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: com.dynamsoft.core.intermediate_results
public class RegionObjectElement
Methods
| Method | Description |
|---|---|
getLocation |
Gets the location of the region object element. |
getReferenceElement |
Gets a referenced region object element. |
getElementType |
Gets the type of the region object element. |
getImageData |
Get the imageData of the region object element. |
clone |
Clones 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
getReferenceElement
Gets a referenced region object element.
RegionObjectElement getReferenceElement()
Return value
Returns a referenced RegionObjectElement object.
See Also
getElementType
Gets the type of the region object element.
@EnumRegionObjectElementType int getElementType()
Return value
Returns a EnumRegionObjectElementType enum value which represents the type of the region object element.
See Also
getImageData
Get the imageData of the region object element.
ImageData getImageData()
Return value
Returns an ImageData object that contains the image data of current object.
See Also
clone
Clones the region object element.
RegionObjectElement clone()
Return value
Returns a copy of the region object element.