I have strange result running OpenCV on SnapDragon board (410c) with Linaro-Debian.
The Tools (Eclipse-CDT, OpenCV-V2.4.91) are all from Debian repository release.
include “cv.h”
include “highgui.h”
include “opencv2/opencv.hpp”
using namespace std;
using namespace cv;
Mat image; image = imread("…/SI3100.jpg", 1 );
Build ERROR :
Invalid arguments ’ Candidates are: cv::Mat imread(const std::__cxx11::basic_string<char,std::char_traits<char>,std::allocator<char>> &, int)
Now, this code works when I tested on VirtualBox (Debian) on PC. Also using Eclipse CDT gcc++
Anyone has ideas ??