Get list of object's edge points.
Namespace:
AForge.ImagingAssembly: AForge.Imaging (in AForge.Imaging.dll) Version: 2.2.5.0 (2.2.5.0)
Syntax
Parameters
- blob
- Type: AForge.Imaging..::.Blob
Blob to collect edge points for.
Return Value
Returns unsorted list of blob's edge points.
Remarks
The method scans each row and column of the blob and finds the most top/bottom/left/right points. The method returns similar result as if results of both GetBlobsLeftAndRightEdges(Blob, List<(Of <(IntPoint>)>)%, List<(Of <(IntPoint>)>)%) and GetBlobsTopAndBottomEdges(Blob, List<(Of <(IntPoint>)>)%, List<(Of <(IntPoint>)>)%) methods were combined, but each edge point occurs only once in the list.

Exceptions
Exception | Condition |
---|---|
System..::.ApplicationException | No image was processed before, so blob can not be extracted. |