OpenBR: Instalasi

From OnnoWiki
Revision as of 09:41, 22 May 2018 by Onnowpurbo (talk | contribs) (Created page with "Sumber: http://openbiometrics.org/docs/install/#linux Install GCC 4.9.2 $ sudo apt-get update $ sudo apt-get install build-essential Install CMake 3.0.2...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Sumber: http://openbiometrics.org/docs/install/#linux



   Install GCC 4.9.2
   $ sudo apt-get update
   $ sudo apt-get install build-essential
   Install CMake 3.0.2
   $ sudo apt-get install cmake cmake-curses-gui
   Download OpenCV 2.4.11, note Build OpenCV with video support
   $ cd ~/Downloads
   $ unzip opencv-2.4.11.zip
   $ cd opencv-2.4.11
   $ mkdir build
   $ cd build
   $ cmake -DCMAKE_BUILD_TYPE=Release ..
   $ make -j4
   $ sudo make install
   $ cd ../..
   $ rm -rf opencv-2.4.11*
   Install Qt 5.4.1
   $ sudo apt-get install qt5-default libqt5svg5-dev qtcreator
   Create a GitHub account, follow their instructions for setting up Git.
   $ git clone https://github.com/biometrics/openbr.git
   $ cd openbr
   $ git checkout v1.1.0
   $ git submodule init
   $ git submodule update
   Build OpenBR!
   $ mkdir build # from the OpenBR root directory
   $ cd build
   $ cmake -DCMAKE_BUILD_TYPE=Release ..
   $ make -j4
   $ sudo make install
   Hack OpenBR!
       Open Qt Creator IDE
       $ qtcreator &
       From the Qt Creator "File" menu select "Open File or Project...".
       Select "openbr/CMakeLists.txt" then "Open".
       Browse to your pre-existing build directory "openbr/build" then select "Next".
       Select "Run CMake" then "Finish".
       You're all set! You can find more information on Qt Creator here if you need it.
   (Optional) Test OpenBR!
   $ cd openbr/scripts
   $ ./downloadDatasets.sh
   $ cd ../build
   $ make test
   (Optional) Package OpenBR!
   $ cd openbr/build
   $ sudo cpack -G TGZ
   (Optional) Build OpenBR documentation!
       Build the docs
       $ pip install mkdocs
       $ cd openbr/docs
       $ sh build_docs.sh
       $ mkdocs serve
       Navigate to http://127.0.0.1:8000 in your browser to view the docs.



Referensi