引数の型に関するエラーでは,例外 TypeError が発生します.また, OpenCVのエラーでは,例外 cv.error が発生します.
例えば,関数の引数の型が誤っていると, TypeError が発生します:
>>> import cv
>>> cv.LoadImage(4)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: argument 1 must be string, not int
A function with the
>>> cv.CreateMat(-1, -1, cv.CV_8UC1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
error: Non-positive width or height