RegionObjectElement
The RegionObjectElement class represents an element of a region object in 2D space. It is an abstract class that provides the interface for region object elements.
Definition
Namespace: Dynamsoft.Core.intermediate_results
class RegionObjectElement : IDisposable
Methods
| Method | Description |
|---|---|
GetLocation |
Gets the location of the region object element. |
GetReferencedElement |
Gets a referenced region object element. |
GetElementType |
Gets the type of the region object element. |
GetImageData |
Gets the imageData of the region object element. |
Clone |
Clone the region object element. |
GetLocation
Gets the location of the region object element.
Quadrilateral GetLocation()
Return value
Returns a Quadrilateral object which represents the location of the region object element.
See Also
GetReferencedElement
Gets a referenced region object element.
RegionObjectElement GetReferencedElement()
Return value
Returns a referenced RegionObjectElement object.
See Also
GetElementType
Gets the type of the region object element.
EnumRegionObjectElementType GetElementType()
Return value
Returns a EnumRegionObjectElementType enum value which represents the type of the region object element.
See Also
GetImageData
Gets the imageData of the region object element.
ImageData GetImageData()
Return value
Returns a referenced ImageData object.
Clone
Clone the region object element.
RegionObjectElement Clone()
Return value
Returns a copy of the region object element.