Interface IDisplayablePointsView
- All Superinterfaces:
com.microblink.blinkid.view.viewfinder.IDetectionView
- All Known Implementing Classes:
OcrResultDotsView
,PointSetView
public interface IDisplayablePointsView
extends com.microblink.blinkid.view.viewfinder.IDetectionView
Interface for views that can draw displayable points on the camera overlay.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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.Methods inherited from interface com.microblink.blinkid.view.viewfinder.IDetectionView
clearDisplayedContent, getView, setHostActivityOrientation
-
Method Details
-
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.
-