|
|
@ -237,10 +237,9 @@ if __name__ == '__main__': |
|
|
|
for bbox in bboxes: |
|
|
|
# Skip if bbox is None, doesn't have exactly 4 elements, or contains None values |
|
|
|
if bbox is None or len(bbox) != 4 or not all(element is not None for element in bbox): |
|
|
|
box = m.image.boxes.add() |
|
|
|
box.x, box.y, box.w, box.h = [10,15,20,30] |
|
|
|
continue |
|
|
|
|
|
|
|
|
|
|
|
# Add the bounding box to the image |
|
|
|
box = m.image.boxes.add() |
|
|
|
box.x, box.y, box.w, box.h = bbox |
|
|
|