Fixing typo in variable name.

This commit is contained in:
boatx 2015-08-12 20:50:05 +00:00
parent e0b327aafe
commit d674965bf9

View File

@ -282,7 +282,7 @@ static bool pyopencv_to(PyObject* o, Mat& m, const ArgInfo info)
if( type < 0 ) if( type < 0 )
{ {
if( typenum == NPY_INT64 || typenum == NPY_UINT64 || type == NPY_LONG ) if( typenum == NPY_INT64 || typenum == NPY_UINT64 || typenum == NPY_LONG )
{ {
needcopy = needcast = true; needcopy = needcast = true;
new_typenum = NPY_INT; new_typenum = NPY_INT;