这个错误是在OpenCV中常见的一个错误,其实就是输入数据格式不正确,需要的是一个tuple
SystemError: new style getargs format but argument is not a tuple
直接转成tuple的格式就可以了!
tuple(your variables)
问题解决!
这个错误是在OpenCV中常见的一个错误,其实就是输入数据格式不正确,需要的是一个tuple
SystemError: new style getargs format but argument is not a tuple
直接转成tuple的格式就可以了!
tuple(your variables)
问题解决!