24 lines
678 B
Java
24 lines
678 B
Java
package com.kofax.kmc.ken.engines.data;
|
|
|
|
import android.graphics.Point;
|
|
import android.graphics.Rect;
|
|
import com.kofax.mobile.sdk._internal.impl.detection.Frame;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public abstract class CheckDetectionResult extends DetectionResult {
|
|
protected final CheckSide side;
|
|
|
|
public CheckDetectionResult(Rect rect, List<Point> list, Frame frame, CheckSide checkSide) {
|
|
super(rect, list, frame);
|
|
if (checkSide == null) {
|
|
throw new IllegalArgumentException("side is null");
|
|
}
|
|
this.side = checkSide;
|
|
}
|
|
|
|
public final CheckSide getCheckSide() {
|
|
return this.side;
|
|
}
|
|
}
|