Building opencv 3.1.0 on Ubuntu 16.04
Hi, I'm trying to build opencv from scratch on ubuntu 16.04 following instructions from here. (http://milq.github.io/install-opencv-...), but keep running into this libtiff error see below:
//usr/lib/x86_64-linux-gnu/libpoppler.so.58: undefined reference to
TIFFClose@LIBTIFF_4.0' //usr/lib/x86_64-linux-gnu/libpoppler.so.58: undefined reference to
TIFFDefaultStripSize@LIBTIFF_4.0' //usr/lib/x86_64-linux-gnu/libpoppler.so.58: undefined reference toTIFFFdOpen@LIBTIFF_4.0' //usr/lib/x86_64-linux-gnu/libpoppler.so.58: undefined reference to
TIFFWriteScanline@LIBTIFF_4.0' //usr/lib/x86_64-linux-gnu/libpoppler.so.58: undefined reference to `TIFFSetField@LIBTIFF_4.0'
To be sure I installed libtiff5-dev and it was already installed. Looks like some version differences is there? If so how can I leave out this dependency and go on with compiling and building?
Try to use
-DBUILD_TIFF=ON
option to use libtiff provided with OpenCV.