|
QuadrilateralFinderProcessImage Method (UnmanagedImage)
|
Find corners of quadrilateral/triangular area in the specified image.
Namespace:
Accord.Imaging
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax public List<IntPoint> ProcessImage(
UnmanagedImage image
)
Public Function ProcessImage (
image As UnmanagedImage
) As List(Of IntPoint)
Request Example
View SourceParameters
- image
- Type: Accord.ImagingUnmanagedImage
Source image to search quadrilateral for.
Return Value
Type:
ListIntPointReturns a list of points, which are corners of the quadrilateral/triangular area found
in the specified image. The first point in the list is the point with lowest
X coordinate (and with lowest Y if there are several points with the same X value).
Points are in clockwise order (screen coordinates system).
Exceptions See Also