We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 66c8509 + 04976fd commit f8fc62fCopy full SHA for f8fc62f
deploy/py_infer/src/parallel/module/detection/det_post_node.py
@@ -66,7 +66,7 @@ def process(self, input_data):
66
sub_image = cv_utils.crop_box_from_image(image, np.array(box))
67
sub_image_list.append(sub_image)
68
if self.is_concat:
69
- sub_image_list = [self.concat_crops(sub_image_list)]
+ sub_image_list = len(sub_image_list) * [self.concat_crops(sub_image_list)]
70
input_data.sub_image_list = sub_image_list
71
72
input_data.data = None
0 commit comments