All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.sarxos.webcam.ds.buildin.WebcamGrabberTask Maven / Gradle / Ivy

Go to download

This library allows you to use your PC webcam, IP or network cameras directly from Java. It's compatible with most operating systems (Windows, Linux, MacOS).

There is a newer version: 0.3.12
Show newest version
package com.github.sarxos.webcam.ds.buildin;

import com.github.sarxos.webcam.ds.buildin.natives.OpenIMAJGrabber;


public abstract class WebcamGrabberTask {

	protected volatile OpenIMAJGrabber grabber = null;

	protected void process(WebcamGrabberProcessor grabber) {
		grabber.process(this);
	}

	public void setGrabber(OpenIMAJGrabber grabber) {
		this.grabber = grabber;
	}

	protected abstract void handle();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy