-
public final class FoodCandidatesData class that represents the results of the SDK's detection process.
-
-
Field Summary
Fields Modifier and Type Field Description private final List<DetectedCandidate>detectedCandidatesprivate final List<BarcodeCandidate>barcodeCandidatesprivate final List<PackagedFoodCandidate>packagedFoodCandidates
-
Constructor Summary
Constructors Constructor Description FoodCandidates(List<DetectedCandidate> detectedCandidates, List<BarcodeCandidate> barcodeCandidates, List<PackagedFoodCandidate> packagedFoodCandidates)
-
Method Summary
Modifier and Type Method Description final List<DetectedCandidate>getDetectedCandidates()Result of the food detection process. final List<BarcodeCandidate>getBarcodeCandidates()Result of the barcode detection process. final List<PackagedFoodCandidate>getPackagedFoodCandidates()Results of the ocr detection process. -
-
Constructor Detail
-
FoodCandidates
FoodCandidates(List<DetectedCandidate> detectedCandidates, List<BarcodeCandidate> barcodeCandidates, List<PackagedFoodCandidate> packagedFoodCandidates)
-
-
Method Detail
-
getDetectedCandidates
final List<DetectedCandidate> getDetectedCandidates()
Result of the food detection process.
-
getBarcodeCandidates
final List<BarcodeCandidate> getBarcodeCandidates()
Result of the barcode detection process.
-
getPackagedFoodCandidates
final List<PackagedFoodCandidate> getPackagedFoodCandidates()
Results of the ocr detection process.
-
-
-
-