Kindly help me in fixing this problem. [ module 'supervision' has no attribute 'Position' ] #486
Abhijnan-Maji
started this conversation in
General
Replies: 1 comment
-
Any solution to this issue |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
def initiate_polygon_zones(
polygons: List[np.ndarray],
frame_resolution_wh: Tuple[int, int],
triggering_position: sv.Position = sv.Position.CENTER
) -> List[sv.Polygonzone]:
return [
sv.Polygonzone(
polygon=polygon,
frame_resolution_wh=frame_resolution_wh,
triggering_position=triggering_position,
)
for polygon in polygons
]
error:
module 'supervision' has no attribute 'Position'
Beta Was this translation helpful? Give feedback.
All reactions