Package org.opencv.highgui

Examples of org.opencv.highgui.VideoCapture


public class OcvCamera implements ICamera {
 
  private VideoCapture cam;
 
  protected void get() {
    cam = new VideoCapture(0);
    if(!cam.isOpened()) {
      // TODO Log error
    } else {
      // TODO secret sauce here!
    }
View Full Code Here

TOP

Related Classes of org.opencv.highgui.VideoCapture

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.