List of usage examples for org.opencv.core CvType ELEM_SIZE
public static final int ELEM_SIZE(int type)
From source file:tk.year.opencv.demo.filters.Threshold.java
License:Open Source License
@Override public Mat filter(final Mat src) { final Mat dst = new Mat(); Imgproc.threshold(src, dst, value, CvType.ELEM_SIZE(src.type()) * (double) maxVal / 100 * 100, type); return dst;/* www. j a v a 2 s. co m*/ }