Interface IDisplayablePointsView
-
- All Superinterfaces:
com.microblink.view.viewfinder.IDetectionView
- All Known Implementing Classes:
OcrResultDotsView
,PointSetView
public interface IDisplayablePointsView extends com.microblink.view.viewfinder.IDetectionView
Interface for views that can draw displayable points on the camera overlay.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addDisplayablePointsDetection(DisplayablePointsDetection displayablePoints)
Sets the points detection that should be presented next.void
setDisplayablePointsDetection(DisplayablePointsDetection displayablePoints)
Displays given points detection and clears previously displayed content.
-
-
-
Method Detail
-
addDisplayablePointsDetection
@AnyThread void addDisplayablePointsDetection(@Nullable DisplayablePointsDetection displayablePoints)
Sets the points detection that should be presented next.- Parameters:
displayablePoints
- the points detection that should be presented next.
-
setDisplayablePointsDetection
@AnyThread void setDisplayablePointsDetection(@Nullable DisplayablePointsDetection displayablePoints)
Displays given points detection and clears previously displayed content.- Parameters:
displayablePoints
- the points detection that should be displayed.
-
-