Example usage for org.opencv.android JavaCameraView subclass-usage

List of usage examples for org.opencv.android JavaCameraView subclass-usage

Introduction

In this page you can find the example usage for org.opencv.android JavaCameraView subclass-usage.

Usage

From source file com.davidmiguel.gobees.monitoring.camera.CameraView.java

/**
 * Improved version of OpenCV JavaCameraView.
 * It allows to control the camera zoom.
 * The frame size is set to 640x480.
 */
@SuppressWarnings("deprecation")

From source file com.minio.io.alice.ZoomCameraView.java

public class ZoomCameraView extends JavaCameraView {
    public ZoomCameraView(Context context, int cameraId) {
        super(context, cameraId);
    }

    public ZoomCameraView(Context context, AttributeSet attrs) {

From source file com.trandi.opentld.TLDView.java

public class TLDView extends JavaCameraView implements CameraBridgeViewBase.CvCameraViewListener {
    final private SurfaceHolder _holder;
    private int _canvasImgYOffset;
    private int _canvasImgXOffset;

    private Mat _currentGray = new Mat();

From source file de.hu_berlin.informatik.spws2014.mapever.camera.CornerDetectionView.java

@SuppressWarnings("deprecation")
public class CornerDetectionView extends JavaCameraView implements PictureCallback {
    interface PictureCallback {
        void onPictureTaken();
    }

From source file in.fabinpaul.sixthsense.CameraView.java

public class CameraView extends JavaCameraView {

    public CameraView(Context context, AttributeSet attrs) {
        super(context, attrs);
        //mCamera.setDisplayOrientation(90);
    }

From source file syncleus.dann.data.video.TLDView.java

public class TLDView extends JavaCameraView implements CameraBridgeViewBase.CvCameraViewListener {
    final private SurfaceHolder _holder;
    private int _canvasImgYOffset;
    private int _canvasImgXOffset;

    private Mat _currentGray = new Mat();