Commit 80f32953 authored by Ilija Radosavovic's avatar Ilija Radosavovic Committed by Facebook Github Bot

Account for no masks when visualizing results

Reviewed By: rbgirshick

Differential Revision: D7271967

fbshipit-source-id: f42493b08e097bd702b36482b4587a42e5bf3262
parent 958b0ad2
......@@ -210,7 +210,7 @@ def vis_one_image_opencv(
if boxes is None or boxes.shape[0] == 0 or max(boxes[:, 4]) < thresh:
return im
if segms is not None:
if segms is not None and len(segms) > 0:
masks = mask_util.decode(segms)
color_list = colormap()
mask_color_id = 0
......@@ -265,7 +265,7 @@ def vis_one_image(
dataset_keypoints, _ = keypoint_utils.get_keypoints()
if segms is not None:
if segms is not None and len(segms) > 0:
masks = mask_util.decode(segms)
color_list = colormap(rgb=True) / 255
......
......@@ -87,16 +87,12 @@ def vis(dataset, detections_pkl, thresh, output_dir, limit=0):
with open(detections_pkl, 'r') as f:
dets = pickle.load(f)
assert all(k in dets for k in ['all_boxes', 'all_segms', 'all_keyps']), \
'Expected detections pkl file in the format used by test_engine.py'
all_boxes = dets['all_boxes']
if 'all_segms' in dets:
all_segms = dets['all_segms']
else:
all_segms = None
if 'all_keyps' in dets:
all_keyps = dets['all_keyps']
else:
all_keyps = None
def id_or_index(ix, val):
if len(val) == 0:
......@@ -109,24 +105,19 @@ def vis(dataset, detections_pkl, thresh, output_dir, limit=0):
break
if ix % 10 == 0:
print('{:d}/{:d}'.format(ix + 1, len(roidb)))
im = cv2.imread(entry['image'])
im_name = os.path.splitext(os.path.basename(entry['image']))[0]
cls_boxes_i = [
id_or_index(ix, all_boxes[j]) for j in range(len(all_boxes))
id_or_index(ix, cls_k_boxes) for cls_k_boxes in all_boxes
]
if all_segms is not None:
cls_segms_i = [
id_or_index(ix, all_segms[j]) for j in range(len(all_segms))
id_or_index(ix, cls_k_segms) for cls_k_segms in all_segms
]
else:
cls_segms_i = None
if all_keyps is not None:
cls_keyps_i = [
id_or_index(ix, all_keyps[j]) for j in range(len(all_keyps))
id_or_index(ix, cls_k_keyps) for cls_k_keyps in all_keyps
]
else:
cls_keyps_i = None
vis_utils.vis_one_image(
im[:, :, ::-1],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment