I am using HIPI to do some images processing ! And at one point, I use the variable CV_32FC3 in my code when i define an opencv Mat.
Mat mat = new Mat(rows, cols, CV_32FC3);
Unfortunately, I get an error saying that the symbol isn't found !
Ps: I use bytedeco which is integrated to HIPI to do images processing
In the build.gradle file of HIPI, I have :
compile group: 'org.bytedeco', name: 'javacv-platform', version: '1.3.2'
compile group: 'org.bytedeco.javacpp-presets', name: 'opencv', version: '3.2.0-1.3 '
compile group: 'org.bytedeco.javacpp-presets', name: 'opencv', version: '3.2.0-1.3 ', classifier: 'macosx-x86_64'
compile group: 'org.bytedeco.javacpp-presets', name: 'opencv', version: '3.2.0-1.3 ', classifier: 'linux-x86_64'
compile group: 'org.bytedeco.javacpp-presets', name: 'opencv', version: '3.2.0-1.3 ', classifier: 'windows-x86_64'
In my code, I have imported the opencv_core :
import org.bytedeco.javacpp.opencv_core.*;
import org.bytedeco.javacpp.helper.opencv_core.*;
import org.bytedeco.javacpp.presets.opencv_core.*;
Can anyone tell me what's wrong ? or what I have forgotten ?