Example usage for org.opencv.core CvType ELEM_SIZE

List of usage examples for org.opencv.core CvType ELEM_SIZE

Introduction

In this page you can find the example usage for org.opencv.core CvType ELEM_SIZE.

Prototype

public static final int ELEM_SIZE(int type) 

Source Link

Usage

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*/
}