Reputation: 87
I wrote a filter with OpenCV library and want to install it as a plugin into Fiji app. So, for this reason I am converting the OpenCV codes to IJ-OpenCV. I have imported org.bytedeco.javacpp.opencv_core.CvType, but it is different from opencv's CvType.
What I want is to write the below line with IJ-OpenCV.
img.converTo(img, CvType.CV_32F)
Upvotes: 0
Views: 288
Reputation: 87
Finally, I have found CV_32F type. Unlike OpenCV java, it is located in opencv_core not in CvType.
Upvotes: 1