Skip to content

Commit

Permalink
Fix MRCNN visualization due to error condition for mask resize (#1767)
Browse files Browse the repository at this point in the history
  • Loading branch information
AllentDan authored and lvhan028 committed Mar 1, 2023
1 parent 747d1c3 commit 339f7ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mmdeploy/codebase/mmdet/deploy/object_detection_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def forward(self,
else:
masks = masks[:, :img_h, :img_w]
# avoid to resize masks with zero dim
if rescale and masks.shape[0] != 0:
if export_postprocess_mask and rescale and masks.shape[0] != 0:
masks = torch.nn.functional.interpolate(
masks.unsqueeze(0),
size=[
Expand Down

0 comments on commit 339f7ae

Please sign in to comment.