Interface IDisplayablePointsView
- All Superinterfaces:
com.microblink.photopay.view.viewfinder.IDetectionView
- All Known Implementing Classes:
OcrResultDotsView,PointSetView
public interface IDisplayablePointsView
extends com.microblink.photopay.view.viewfinder.IDetectionView
Interface for views that can draw displayable points on the camera overlay.
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddDisplayablePointsDetection(DisplayablePointsDetection displayablePoints) Sets the points detection that should be presented next.voidsetDisplayablePointsDetection(DisplayablePointsDetection displayablePoints) Displays given points detection and clears previously displayed content.Methods inherited from interface com.microblink.photopay.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.
-