Remove dependency on png++, use openCV instead.

This commit is contained in:
2018-04-06 12:24:07 +02:00
parent 2bc3d5ae95
commit 9dc4f1546d
5 changed files with 12 additions and 99 deletions

View File

@@ -22,7 +22,6 @@ target_compile_options(fmri PRIVATE "-Wall" "-Wextra" "-pedantic")
find_package(Caffe REQUIRED)
find_package(OpenGL REQUIRED)
find_package(GLUT REQUIRED)
find_package(png++ REQUIRED)
find_package(Boost REQUIRED COMPONENTS filesystem program_options)
find_package(OpenCV REQUIRED COMPONENTS core imgproc imgcodecs)
@@ -30,7 +29,6 @@ target_link_libraries(fmri PUBLIC
Caffe::Caffe
GLUT::GLUT
OpenGL::GLU
png++::png++
Boost::program_options
opencv_core
opencv_imgproc