Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 2 KB

HOWTO_RUN.md

File metadata and controls

32 lines (29 loc) · 2 KB

How to Run Example Codes in Linux

Preparation

Running Examples

  1. Unzip example codes at your_folder
  2. Build the example codes as like the following commands at your_folder
mkdir build
cd build
cmake ..
make install
  1. Enjoy the examples at your_folder/bin

How to Run Example Codes with Microsoft Visual Studio

Preparation

Running Examples

  1. Unzip example codes and binaries at your_folder
    • OpenCV and Ceres Solver will be located at your_folder\EXTERNAL folder. Please ignore duplicated LICENSE files.
  2. Run your Visual Studio and open the solution file, your_folder\msvs\3dv_tutorial.sln
    • Or simply double-click your_folder\msvs\3dv_tutorial.sln file (if it is associated with MSVS)
  3. Build the example codes in the solution (Menu > Build > Build Solution)
    • Their executable files will be located at your_folder\bin folder.
  4. Enjoy the examples