Skip to content

Commit

Permalink
adding all other important files
Browse files Browse the repository at this point in the history
  • Loading branch information
angusleigh committed May 28, 2014
1 parent e25f000 commit f0849e7
Show file tree
Hide file tree
Showing 5 changed files with 24,523 additions and 0 deletions.
29 changes: 29 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
cmake_minimum_required(VERSION 2.8.3)
project(hog_haar_person_detection)

find_package(catkin REQUIRED COMPONENTS
roscpp
rospy
std_msgs
sensor_msgs
cv_bridge
image_transport
)

catkin_package()

include_directories(
${catkin_INCLUDE_DIRS}
${OpenCV_INCLUDE_DIRS}
)


add_executable(
hog_haar_person_detection
src/hog_haar_person_detection.cpp
)
target_link_libraries(
hog_haar_person_detection
${catkin_LIBRARIES}
${OpenCV_INCLUDE_DIRS}
)
Loading

0 comments on commit f0849e7

Please sign in to comment.