We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
调用cfacedetect_cnn时出现: ValueError: Procedure probably called with too many arguments (20 bytes in excess) 参考了https://stackoverflow.com/questions/41760830/ctypes-procedure-probably-called-with-too-many-arguments-92-bytes-in-excess 后 将下面代码中的ctypes.WinDLL改为ctypes.cdll.LoadLibrary可以正常运行
ValueError: Procedure probably called with too many arguments (20 bytes in excess)
if platform.system() == 'Windows': # load .dll for Windows LoadDLL = ctypes.WinDLL else: # load lib for Linux, Darwin, etc LoadDLL = ctypes.cdll.LoadLibrary
建议增加一个对python环境的检查
The text was updated successfully, but these errors were encountered:
No branches or pull requests
调用cfacedetect_cnn时出现:
ValueError: Procedure probably called with too many arguments (20 bytes in excess)
参考了https://stackoverflow.com/questions/41760830/ctypes-procedure-probably-called-with-too-many-arguments-92-bytes-in-excess 后
将下面代码中的ctypes.WinDLL改为ctypes.cdll.LoadLibrary可以正常运行
建议增加一个对python环境的检查
The text was updated successfully, but these errors were encountered: