
com.lti.civil.CaptureSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lti-civil-no-swt Show documentation
Show all versions of lti-civil-no-swt Show documentation
LTI-CIVIL is a Java library for capturing images from a video
source such as a USB camera. It provides a simple API and does
not depend on or use JMF!
The newest version!
/*
* Created on May 25, 2005
*/
package com.lti.civil;
import java.util.List;
/**
*
* @author Ken Larson
*/
public interface CaptureSystem
{
public void init() throws CaptureException;
public void dispose() throws CaptureException;
/** @return List of {@link CaptureDeviceInfo} */
public List getCaptureDeviceInfoList() throws CaptureException;
public CaptureStream openCaptureDeviceStream(String deviceId) throws CaptureException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy