-
CMake 2.8
-
Aruco 3.0.0 (Included in the project)
-
OpenCV 3.2.0
-
PCL 1.7.2 (Optional, for point cloud I/O and visualization)
*The project might work with older dependencies however we have not tested.
Like a normal cmake project make a build library:
mkdir automatic-ar-buildchange the current directory to the build directory:
cd automatic-ar-buildrun cmake to configure the project and generate the makefiles:
cmake ../automatic-ar/trunk/in case cmake does not find a library you have automatically, you can manually give cmake the path to where the library's cmake configuration file exists. For example
cmake ../automatic-ar/trunk/ -DOpenCV_DIR=~/local/share/OpenCVFinally run make to build the binaries
makeYou will find the executables to work with in the apps directory.
You can download sample data sets from here.
- Unzip the desired data set.
unzip pentagonal.zip- Do the marker detection by giving the path of the data set to
detect_markers:
detect_markers pentagonalAfter unzipping you will find a file name aruco.detections in the data folder path.
- Apply the algorithm by providing the data folder path and the physical size of the marker to
find_solution:
find_solution pentagonal 0.04Here 0.04 is the size of each marker in meters.
The output of find_solutions includes several files. Files with the name format 'initial*' store information when the solution after initialization and before optimization. The files with their names 'final*' store information resulted after doing the optimization.
If you compile with the PCL library you will have automatic visualization when you run find_solution. However, if not, you can still visualize the solution using the overlay app:
overlay pentagonalYou can also save overlayed visualization in a video in the dataset folder by using an extra option:
overlay pentagonal -save-videoEach dataset is defined within a folder. In that folder each camera has a directory with its index as its name. In the cameras folders there is a "calib.xml" file specifying the camera matrix, distortion coefficients and the image size in OpenCV calibration output style.