116 lines
2.8 KiB
Java
116 lines
2.8 KiB
Java
|
package org.jnbis.record;
|
||
|
|
||
|
import org.jnbis.internal.record.BaseVariableResolutionImageRecord;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class IrisImage extends BaseVariableResolutionImageRecord {
|
||
|
private String acquisitionLightingSpectrum;
|
||
|
private String colorSpace;
|
||
|
private String deviceUniqueIdentifier;
|
||
|
private String eyeColor;
|
||
|
private String featureIdentifier;
|
||
|
private String globalUniqueIdentifier;
|
||
|
private String imagePropertyCode;
|
||
|
private String imageQualityScore;
|
||
|
private String irisDiameter;
|
||
|
private String makeModelSerialNumber;
|
||
|
private String rotationAngleOfEye;
|
||
|
private String rotationUncertainty;
|
||
|
|
||
|
public void setRotationUncertainty(String str) {
|
||
|
this.rotationUncertainty = str;
|
||
|
}
|
||
|
|
||
|
public void setRotationAngleOfEye(String str) {
|
||
|
this.rotationAngleOfEye = str;
|
||
|
}
|
||
|
|
||
|
public void setMakeModelSerialNumber(String str) {
|
||
|
this.makeModelSerialNumber = str;
|
||
|
}
|
||
|
|
||
|
public void setIrisDiameter(String str) {
|
||
|
this.irisDiameter = str;
|
||
|
}
|
||
|
|
||
|
public void setImageQualityScore(String str) {
|
||
|
this.imageQualityScore = str;
|
||
|
}
|
||
|
|
||
|
public void setImagePropertyCode(String str) {
|
||
|
this.imagePropertyCode = str;
|
||
|
}
|
||
|
|
||
|
public void setGlobalUniqueIdentifier(String str) {
|
||
|
this.globalUniqueIdentifier = str;
|
||
|
}
|
||
|
|
||
|
public void setFeatureIdentifier(String str) {
|
||
|
this.featureIdentifier = str;
|
||
|
}
|
||
|
|
||
|
public void setEyeColor(String str) {
|
||
|
this.eyeColor = str;
|
||
|
}
|
||
|
|
||
|
public void setDeviceUniqueIdentifier(String str) {
|
||
|
this.deviceUniqueIdentifier = str;
|
||
|
}
|
||
|
|
||
|
public void setColorSpace(String str) {
|
||
|
this.colorSpace = str;
|
||
|
}
|
||
|
|
||
|
public void setAcquisitionLightingSpectrum(String str) {
|
||
|
this.acquisitionLightingSpectrum = str;
|
||
|
}
|
||
|
|
||
|
public String getRotationUncertainty() {
|
||
|
return this.rotationUncertainty;
|
||
|
}
|
||
|
|
||
|
public String getRotationAngleOfEye() {
|
||
|
return this.rotationAngleOfEye;
|
||
|
}
|
||
|
|
||
|
public String getMakeModelSerialNumber() {
|
||
|
return this.makeModelSerialNumber;
|
||
|
}
|
||
|
|
||
|
public String getIrisDiameter() {
|
||
|
return this.irisDiameter;
|
||
|
}
|
||
|
|
||
|
public String getImageQualityScore() {
|
||
|
return this.imageQualityScore;
|
||
|
}
|
||
|
|
||
|
public String getImagePropertyCode() {
|
||
|
return this.imagePropertyCode;
|
||
|
}
|
||
|
|
||
|
public String getGlobalUniqueIdentifier() {
|
||
|
return this.globalUniqueIdentifier;
|
||
|
}
|
||
|
|
||
|
public String getFeatureIdentifier() {
|
||
|
return this.featureIdentifier;
|
||
|
}
|
||
|
|
||
|
public String getEyeColor() {
|
||
|
return this.eyeColor;
|
||
|
}
|
||
|
|
||
|
public String getDeviceUniqueIdentifier() {
|
||
|
return this.deviceUniqueIdentifier;
|
||
|
}
|
||
|
|
||
|
public String getColorSpace() {
|
||
|
return this.colorSpace;
|
||
|
}
|
||
|
|
||
|
public String getAcquisitionLightingSpectrum() {
|
||
|
return this.acquisitionLightingSpectrum;
|
||
|
}
|
||
|
}
|