scrfd-opencv icon indicating copy to clipboard operation
scrfd-opencv copied to clipboard

ValueError: operands could not be broadcast together with shapes (12800,) (3200,)

Open intjun opened this issue 2 years ago • 4 comments

ValueError: operands could not be broadcast together with shapes (12800,) (3200,)

intjun avatar Jun 16 '22 07:06 intjun

同问,与python版本有关?

yantao473 avatar Jun 17 '22 02:06 yantao473

同问,报错后这样改scores = outs[idx * self.fmc][0] bbox_preds = outs[idx * self.fmc + 3][0] * stride kps_preds =outs[idx * self.fmc + 6][0]* stride 报错: kps_preds =outs[idx * self.fmc + 6][0]* stride IndexError: tuple index out of range 求助!

axi986 avatar Jul 01 '22 09:07 axi986

ValueError: operands could not be broadcast together with shapes (12800,) (3200,)

您好,请问解决这个问题了吗?😭

MIaomiao426 avatar Sep 05 '22 07:09 MIaomiao426

同问,报错后这样改scores = outs[idx * self.fmc][0] bbox_preds = outs[idx * self.fmc + 3][0] * stride kps_preds =outs[idx * self.fmc + 6][0]* stride 报错: kps_preds =outs[idx * self.fmc + 6][0]* stride IndexError: tuple index out of range 求助!

scores = outs[idx][0] bbox_preds = outs[idx + self.fmc * 1][0] * stride kps_preds = outs[idx + self.fmc * 2][0] * stride

yangletter avatar Sep 10 '22 09:09 yangletter