这个错误浪费我了一下午的时间,因为代码是从别的地方参考来的。
原因:它就是没有这个字体啊
解决方法也很简单, cv2.FONT_HERSHEY_SUPLEX
修改为cv2.FONT_HERSHEY_SIMPLEX
就对了。
Just change cv2.FONT_HERSHEY_SUPLEX
to cv2.FONT_HERSHEY_SIMPLEX
will fix the issue. You might have this issue simply because you copy the code from somewhere and openCV 4.2.0 just doesn’t have FONT_HERSHEY_SUPLEX
.