Commit e885b1b3 authored by Patrik Huber's avatar Patrik Huber

Renamed fit-model to fit-model-simple

parent e4f46a8f
...@@ -34,8 +34,8 @@ if(MSVC) ...@@ -34,8 +34,8 @@ if(MSVC)
endif() endif()
# Model fitting (affine cam & shape to landmarks) example: # Model fitting (affine cam & shape to landmarks) example:
add_executable(fit-model fit-model.cpp) add_executable(fit-model-simple fit-model-simple.cpp)
target_link_libraries(fit-model ${OpenCV_LIBS} ${Boost_LIBRARIES}) target_link_libraries(fit-model-simple ${OpenCV_LIBS} ${Boost_LIBRARIES})
if(BUILD_CERES_EXAMPLE) if(BUILD_CERES_EXAMPLE)
# Find Ceres, for the fit-model-ceres app: # Find Ceres, for the fit-model-ceres app:
...@@ -55,6 +55,6 @@ target_link_libraries(generate-obj ${OpenCV_LIBS} ${Boost_LIBRARIES}) ...@@ -55,6 +55,6 @@ target_link_libraries(generate-obj ${OpenCV_LIBS} ${Boost_LIBRARIES})
# install target: # install target:
install(TARGETS fit-model DESTINATION bin) install(TARGETS fit-model-simple DESTINATION bin)
install(TARGETS generate-obj DESTINATION bin) install(TARGETS generate-obj DESTINATION bin)
install(DIRECTORY ${CMAKE_SOURCE_DIR}/examples/data DESTINATION bin) install(DIRECTORY ${CMAKE_SOURCE_DIR}/examples/data DESTINATION bin)
/* /*
* eos - A 3D Morphable Model fitting library written in modern C++11/14. * eos - A 3D Morphable Model fitting library written in modern C++11/14.
* *
* File: examples/fit-model.cpp * File: examples/fit-model-simple.cpp
* *
* Copyright 2015 Patrik Huber * Copyright 2015 Patrik Huber
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment