what-the-bank/sources/com/google/android/gms/vision/label/ImageLabel.java

27 lines
534 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.android.gms.vision.label;
/* loaded from: classes2.dex */
public class ImageLabel {
private final String label;
private final String zzdn;
private final float zzdo;
public ImageLabel(String str, String str2, float f) {
this.zzdn = str;
this.label = str2;
this.zzdo = f;
}
public String getMid() {
return this.zzdn;
}
public String getLabel() {
return this.label;
}
public float getConfidence() {
return this.zzdo;
}
}