Fix typo: remove unnecessary +
symbol
This commit is contained in:
parent
b544a314b3
commit
dacce6548e
|
@ -107,7 +107,7 @@ def draw_detection(
|
||||||
image_rows)
|
image_rows)
|
||||||
rect_end_point = _normalized_to_pixel_coordinates(
|
rect_end_point = _normalized_to_pixel_coordinates(
|
||||||
relative_bounding_box.xmin + relative_bounding_box.width,
|
relative_bounding_box.xmin + relative_bounding_box.width,
|
||||||
relative_bounding_box.ymin + +relative_bounding_box.height, image_cols,
|
relative_bounding_box.ymin + relative_bounding_box.height, image_cols,
|
||||||
image_rows)
|
image_rows)
|
||||||
cv2.rectangle(image, rect_start_point, rect_end_point,
|
cv2.rectangle(image, rect_start_point, rect_end_point,
|
||||||
bbox_drawing_spec.color, bbox_drawing_spec.thickness)
|
bbox_drawing_spec.color, bbox_drawing_spec.thickness)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user