You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
python版本的报错:
Traceback (most recent call last):
File "E:\karuizhi\scrfd-opencv-main\main.py", line 123, in
outimg = mynet.detect(srcimg)
File "E:\karuizhi\scrfd-opencv-main\main.py", line 78, in detect
bboxes = self.distance2bbox(anchor_centers, bbox_preds)
File "E:\karuizhi\scrfd-opencv-main\main.py", line 35, in distance2bbox
x1 = points[:, 0] - distance[:, 0]
ValueError: operands could not be broadcast together with shapes (12800,) (3200,)
这个相减维度不匹配x1 = points[:, 0] - distance[:, 0]
The text was updated successfully, but these errors were encountered:
C++版本报错:
1>------ 已启动生成: 项目: ConsoleApplication2, 配置: Release x64 ------
1>main.obj : error LNK2001: 无法解析的外部符号 "void __cdecl cv::imshow(class std::basic_string<char,struct std::char_traits,class std::allocator > const &,class cv::_InputArray const &)" (?imshow@cv@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@v?$allocator@D@2@@std@@AEBV_InputArray@1@@z)
1>已完成生成项目“ConsoleApplication2.vcxproj”的操作 - 失败。
========== 生成: 0 成功,1 失败,0 最新,0 已跳过 ==========
有9个无法解析符号的报错
python版本的报错:
Traceback (most recent call last):
File "E:\karuizhi\scrfd-opencv-main\main.py", line 123, in
outimg = mynet.detect(srcimg)
File "E:\karuizhi\scrfd-opencv-main\main.py", line 78, in detect
bboxes = self.distance2bbox(anchor_centers, bbox_preds)
File "E:\karuizhi\scrfd-opencv-main\main.py", line 35, in distance2bbox
x1 = points[:, 0] - distance[:, 0]
ValueError: operands could not be broadcast together with shapes (12800,) (3200,)
这个相减维度不匹配x1 = points[:, 0] - distance[:, 0]
The text was updated successfully, but these errors were encountered: