forked from MasteringOpenCV/code
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing code & info for Ch7 (Pose Estimation using AAM)
- Loading branch information
1 parent
c748971
commit 0dd2c80
Showing
8 changed files
with
573 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,40 @@ | ||
cmake_minimum_required (VERSION 2.6) | ||
|
||
PROJECT(HeadOrientation) | ||
|
||
# Requires OpenCV | ||
FIND_PACKAGE( OpenCV REQUIRED ) | ||
|
||
SET(SRC | ||
main.cpp | ||
) | ||
|
||
ADD_EXECUTABLE( ${PROJECT_NAME} ${SRC} ) | ||
TARGET_LINK_LIBRARIES( ${PROJECT_NAME} ${OpenCV_LIBS} ) | ||
cmake_minimum_required (VERSION 2.6) | ||
|
||
PROJECT(HeadOrientation) | ||
|
||
# Requires OpenCV | ||
FIND_PACKAGE( OpenCV REQUIRED ) | ||
|
||
SET(SRC | ||
main.cpp | ||
PAW.cpp | ||
Triangle.cpp | ||
09-1m.jpg | ||
09-2m.jpg | ||
09-3m.jpg | ||
simple-aam.txt | ||
) | ||
|
||
ADD_EXECUTABLE( ${PROJECT_NAME} ${SRC} ) | ||
TARGET_LINK_LIBRARIES( ${PROJECT_NAME} ${OpenCV_LIBS} ) | ||
|
||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD # Adds a post-build event to HeadOrientation | ||
COMMAND ${CMAKE_COMMAND} -E copy_if_different # which executes "cmake - E copy_if_different..." | ||
"${PROJECT_SOURCE_DIR}/09-1m.jpg" # <--this is in-file | ||
$<TARGET_FILE_DIR:${PROJECT_NAME}>) # <--this is out-file path | ||
|
||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD # Adds a post-build event to HeadOrientation | ||
COMMAND ${CMAKE_COMMAND} -E copy_if_different # which executes "cmake - E copy_if_different..." | ||
"${PROJECT_SOURCE_DIR}/09-2m.jpg" # <--this is in-file | ||
$<TARGET_FILE_DIR:${PROJECT_NAME}>) # <--this is out-file path | ||
|
||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD # Adds a post-build event to HeadOrientation | ||
COMMAND ${CMAKE_COMMAND} -E copy_if_different # which executes "cmake - E copy_if_different..." | ||
"${PROJECT_SOURCE_DIR}/09-3m.jpg" # <--this is in-file | ||
$<TARGET_FILE_DIR:${PROJECT_NAME}>) # <--this is out-file path | ||
|
||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD # Adds a post-build event to HeadOrientation | ||
COMMAND ${CMAKE_COMMAND} -E copy_if_different # which executes "cmake - E copy_if_different..." | ||
"${PROJECT_SOURCE_DIR}/simple-aam.txt" # <--this is in-file | ||
$<TARGET_FILE_DIR:${PROJECT_NAME}>) # <--this is out-file path | ||
|
Oops, something went wrong.