Relations
Image - Contains_Box
Tests if a box is contained in the image.
IN
| Name | Type | Description |
|---|---|---|
| InImage | Image | The input Image |
| InBox | Box | Box to test. |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutBool | Bool | true if the box is contained in the image, false otherwise. |
| Error | ErrorState | Gets the execution error message |
Image - Contains_Point2D
Tests if a point is contained in the image.
IN
| Name | Type | Description |
|---|---|---|
| InImage | Image | The input Image |
| InPoint | Point2D | Point to test. |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutBool | Bool | true if the point is contained in the image, false otherwise. |
| Error | ErrorState | Gets the execution error message |
Image - Contains_Point2Di
Tests if a pixel position is contained in the image.
IN
| Name | Type | Description |
|---|---|---|
| InImage | Image | The input Image |
| InPosition | Point2Di | Position to test. |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutBool | Bool | true if the position is contained in the image, false otherwise. |
| Error | ErrorState | Gets the execution error message |
Image - Contains_Rectangle
Tests if a rectangle is contained in the image.
IN
| Name | Type | Description |
|---|---|---|
| InImage | Image | The input Image |
| InRectangle | Rectangle2D | Rectangle to test. |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutBool | Bool | true if the rectangle is contained in the image, false otherwise. |
| Error | ErrorState | Gets the execution error message |