forked from kikohs/freak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
55 lines (31 loc) · 1.41 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
FREAK: Fast Retina Keypoint
A. Alahi, R. Ortiz, and P. Vandergheynst. FREAK: Fast Retina Keypoint. In IEEE Conference on Computer Vision and Pattern Recognition, 2012.
Alexandre Alahi, Raphael Ortiz, Kirell Benzi, Pierre Vandergheynst
Ecole Polytechnique Federale de Lausanne (EPFL), Switzerland
http://www.ivpe.com/freak.htm
http://infoscience.epfl.ch/record/175537/files/2069.pdf
http://lts2.epfl.ch
---------------
DEPENDENCIES
CMake >= 2.6, http://www.cmake.org/
OpenCV >= 2.4 , http://code.opencv.org/projects/opencv
---------------
BUILDING
### LIBRARY + DEMO
Create a build directory
mkdir build
cd build
- SET CMAKE_INSTALL_PREFIX (default /usr/local/)
- SET OpenCV_DIR if not installed in default dir
cmake -DCMAKE_INSTALL_PREFIX=/Users/YourName/path/toFolder/ -DOpenCV_DIR=/Users/YourName/path/to/OpenCv/ ..
-DCMAKE_INSTALL_PREFIX=/Users/kikohs/Projects/libs/ -DOpenCV_DIR=/usr/local/share/OpenCV
If you have error with the FindOpenCV in cmake, change OpenCV_DIR to folder containing OpenCVConfig.cmake
Usually -DOpenCV_DIR=/Users/YourName/path/to/OpenCv/share/OpenCv/
### NO DEMO
- SET BUILD_DEMO=OFF
cmake -DCMAKE_INSTALL_PREFIX=/Users/YourName/path/toFolder/ -DOpenCV_DIR=/Users/YourName/path/to/OpenCv/ -DBUILD_DEMO=OFF ..
### NO USE OF SSE3
- SET USE_SEE=OFF
cmake -DCMAKE_INSTALL_PREFIX=/Users/YourName/path/toFolder/ -DOpenCV_DIR=/Users/YourName/path/to/OpenCv/ -DUSE_SSE=OFF ..
make
(sudo) make install