Polygon Zone
PolygonZone¶
A class for defining a polygon-shaped zone within a frame for detecting objects.
Attributes:
Name | Type | Description |
---|---|---|
polygon |
ndarray
|
A numpy array defining the polygon vertices |
frame_resolution_wh |
Tuple[int, int]
|
The frame resolution (width, height) |
triggering_position |
Position
|
The position within the bounding box that triggers the zone (default: Position.BOTTOM_CENTER) |
current_count |
int
|
The current count of detected objects within the zone |
mask |
ndarray
|
The 2D bool mask for the polygon zone |
Source code in supervision/detection/tools/polygon_zone.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
trigger(detections)
¶
Determines if the detections are within the polygon zone.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
detections |
Detections
|
The detections to be checked against the polygon zone |
required |
Returns:
Type | Description |
---|---|
ndarray
|
np.ndarray: A boolean numpy array indicating if each detection is within the polygon zone |
Source code in supervision/detection/tools/polygon_zone.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
PolygonZoneAnnotator¶
A class for annotating a polygon-shaped zone within a frame with a count of detected objects.
Attributes:
Name | Type | Description |
---|---|---|
zone |
PolygonZone
|
The polygon zone to be annotated |
color |
Color
|
The color to draw the polygon lines |
thickness |
int
|
The thickness of the polygon lines, default is 2 |
text_color |
Color
|
The color of the text on the polygon, default is black |
text_scale |
float
|
The scale of the text on the polygon, default is 0.5 |
text_thickness |
int
|
The thickness of the text on the polygon, default is 1 |
text_padding |
int
|
The padding around the text on the polygon, default is 10 |
font |
int
|
The font type for the text on the polygon, default is cv2.FONT_HERSHEY_SIMPLEX |
center |
Tuple[int, int]
|
The center of the polygon for text placement |
Source code in supervision/detection/tools/polygon_zone.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
|
annotate(scene, label=None)
¶
Annotates the polygon zone within a frame with a count of detected objects.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
scene |
ndarray
|
The image on which the polygon zone will be annotated |
required |
label |
Optional[str]
|
An optional label for the count of detected objects within the polygon zone (default: None) |
None
|
Returns:
Type | Description |
---|---|
ndarray
|
np.ndarray: The image with the polygon zone and count of detected objects |
Source code in supervision/detection/tools/polygon_zone.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
|