![JAR search and dependency download from the Maven repository](/logo.png)
com.lti.civil.CaptureSystem Maven / Gradle / Ivy
/*
* 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