CTPN运行报错(已解决)

报错集锦:

1. File “nms.pyx”, line 25, in nms.nms

cdef np.ndarray[np.int_t, ndim=1] order = scores.argsort()[::-1]

ValueError: Buffer dtype mismatch, expected ‘int_t’ but got ‘long long’
在这里插入图片描述
参考实现代码:

https://github.com/eragonruan/text-detection-ctpn

需要修改文件nms.pyx:

cdef np.ndarray[np.int_t, ndim=1] order = scores.argsort()[::-1]

改成:

cdef np.ndarray[np.intp_t, ndim=1] order = scores.argsort()[::-1]

然后在box下运行:

python setup.py build_ext --inplace

2. fatal error C1083: Cannot open include file: ‘basetsd.h’: No such file or directory

https://stackoverflow.com/questions/23691564/running-cython-in-windows-x64-fatal-error-c1083-cannot-open-include-file-ba

下载sdk即可:

For those with Windows 10, download the SDK from here(https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk/) to fix the header file basestd.h.

I downloaded the .exe, installed and worked great. SDK was ~2.3GB.

3. error: Unable to find vcvarsall.bat

下载vs

因为主要找不到这个文件:vcvarsall.bat

进入D:\Program Files (x86)\python\Python37-32\Lib\distutils\msvc9compiler.py
在这里插入图片描述
为什么下vs: 因为vs里有这个文件,把python相关的功能勾上!当然,直接去别人那拷估计也可以,我没试。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Thomas_Cai

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值