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

org.openpnp.capture.CaptureProperty Maven / Gradle / Ivy

There is a newer version: 0.0.28-0
Show newest version
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