org.openpnp.capture.CaptureProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openpnp-capture-java Show documentation
Show all versions of openpnp-capture-java Show documentation
OpenPnP Capture Java with all binaries included, packaged for Maven.
package org.openpnp.capture;
import org.openpnp.capture.library.OpenpnpCaptureLibrary;
public enum CaptureProperty {
Exposure(OpenpnpCaptureLibrary.CAPPROPID_EXPOSURE),
Focus(OpenpnpCaptureLibrary.CAPPROPID_FOCUS),
Zoom(OpenpnpCaptureLibrary.CAPPROPID_ZOOM),
WhiteBalance(OpenpnpCaptureLibrary.CAPPROPID_WHITEBALANCE),
Gain(OpenpnpCaptureLibrary.CAPPROPID_GAIN);
final int propertyId;
private CaptureProperty(int propertyId) {
this.propertyId = propertyId;
}
public int getPropertyId() {
return propertyId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy