Example usage for org.opencv.core MatOfRect getNativeObjAddr

List of usage examples for org.opencv.core MatOfRect getNativeObjAddr

Introduction

In this page you can find the example usage for org.opencv.core MatOfRect getNativeObjAddr.

Prototype

public long getNativeObjAddr() 

Source Link

Usage

From source file:ph.edu.dlsu.mhealth.vision.DetectionBasedTracker.java

License:Open Source License

public void detect(Mat imageGray, MatOfRect faces) {
    nativeDetect(mNativeAddr, imageGray.getNativeObjAddr(), faces.getNativeObjAddr());
}