Changeset 36
- Timestamp:
- 02/04/13 18:01:56 (12 years ago)
- Location:
- trunk/saliency_detection
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/saliency_detection/CMakeLists.txt
r27 r36 22 22 #rosbuild_gensrv() 23 23 24 find_package(OpenCV REQUIRED) 25 24 26 #common commands for building c++ executables and libraries 25 27 #rosbuild_add_library(${PROJECT_NAME} src/example.cpp) … … 33 35 34 36 rosbuild_add_executable(saliencyDetectionHou src/saliencyDetectionHou.cpp) 37 target_link_libraries(saliencyDetectionHou ${OpenCV_LIBS}) 35 38 rosbuild_add_executable(saliencyDetectionRudinac src/saliencyDetectionRudinac.cpp) 39 target_link_libraries(saliencyDetectionRudinac ${OpenCV_LIBS}) 36 40 rosbuild_add_executable(saliencyDetectionItti src/saliencyDetectionItti.cpp) 37 38 target_link_libraries(saliencyDetectionItti cvgabor) 41 target_link_libraries(saliencyDetectionItti cvgabor ${OpenCV_LIBS}) 39 42 40 43 rosbuild_make_distribution(0.1.0) -
trunk/saliency_detection/manifest.xml
r17 r36 10 10 <review status="unreviewed" notes=""/> 11 11 <url>http://ros.org/wiki/saliency_detection</url> 12 <rosdep name="opencv2"/> 12 13 <depend package="roscpp"/> 13 14 <depend package="sensor_msgs"/> -
trunk/saliency_detection/src/cvgabor.cpp
r10 r36 311 311 CvMat* kernel = cvCreateMat(Width, Width, CV_32FC1); 312 312 double ve; 313 CvScalar S;314 313 switch(Type) 315 314 { … … 503 502 break; 504 503 } 504 return NULL; 505 505 } 506 506
Note: See TracChangeset
for help on using the changeset viewer.