Changed rgb to bgr

This commit is contained in:
Bhavay Malhotra 2024-08-13 23:46:50 +05:30
parent d60443751a
commit b1cc5c3564
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ class VertexLabelAnnotator:
org=(box[0], box[3]),
fontFace=font,
fontScale=self.text_scale,
color=text_color.as_rgb(),
color=text_color.as_bgr(),
thickness=self.text_thickness,
lineType=cv2.LINE_AA,
)