Atalasoft MobileImage API Reference
|
Bounding Rectangle of four coordinates. More...
#import <kfxKEDBoundingRectangle.h>
Instance Methods | |
(id) | - initWithLeft:top:width:height: |
Initialize bounding rectangle with left, top, width, and height values. More... | |
Properties | |
int | rectLeft |
Represents the left side of a rectangle. More... | |
int | rectTop |
Represents the top edge of a rectangle. More... | |
int | rectRight |
Represents the right side of a rectangle. More... | |
int | rectBottom |
Represents the bottom edge of a rectangle. More... | |
Bounding Rectangle of four coordinates.
Framework: libKfxEngines
Import suggestion: #import <kfxLibEngines/kfxEngines.h>
An instance of this class contains the bounding rectangle (in pixels) for an item in an image. These rectangle coordinates should always be less than or equal to the image width and height. See also: kfxKEDBoundingTetragon
- (id) initWithLeft: | (int) | left | |
top: | (int) | top | |
width: | (int) | width | |
height: | (int) | height | |
Initialize bounding rectangle with left, top, width, and height values.
Use this method to initialize an object of kfxKEDBoundingRectangle when you have values of left, top, width, and height.
|
readwriteatomicassign |
Represents the bottom edge of a rectangle.
This bottom side of the rectangle references the largest Y coordinate.
|
readwriteatomicassign |
Represents the left side of a rectangle.
This left side of the rectangle references the least X coordinate.
|
readwriteatomicassign |
Represents the right side of a rectangle.
This right side of the rectangle references the largest X coordinate.
|
readwriteatomicassign |
Represents the top edge of a rectangle.
This top side of the rectangle references the least Y coordinate.