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

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