Class DetectPolygonOnPageUseCase.BitmapLines
-
- All Implemented Interfaces:
public final class DetectPolygonOnPageUseCase.BitmapLines
Encapsulates information about the detected polygon, lines and bitmap extracted from the page
-
-
Field Summary
Fields Modifier and Type Field Description private final List<PointF>
polygon
private final List<LineSegmentFloat>
vertical
private final List<LineSegmentFloat>
horizontal
private final Bitmap
bitmap
-
Constructor Summary
Constructors Constructor Description DetectPolygonOnPageUseCase.BitmapLines(List<PointF> polygon, List<LineSegmentFloat> vertical, List<LineSegmentFloat> horizontal, Bitmap bitmap)
-
Method Summary
Modifier and Type Method Description final List<PointF>
getPolygon()
final List<LineSegmentFloat>
getVertical()
final List<LineSegmentFloat>
getHorizontal()
final Bitmap
getBitmap()
-
-
Constructor Detail
-
DetectPolygonOnPageUseCase.BitmapLines
DetectPolygonOnPageUseCase.BitmapLines(List<PointF> polygon, List<LineSegmentFloat> vertical, List<LineSegmentFloat> horizontal, Bitmap bitmap)
-
-
Method Detail
-
getPolygon
final List<PointF> getPolygon()
-
getVertical
final List<LineSegmentFloat> getVertical()
-
getHorizontal
final List<LineSegmentFloat> getHorizontal()
-
-
-
-