Commit 7d4cbbd7 authored by Mansour Moufid's avatar Mansour Moufid

Cast a long integer to double explicitly.

parent b7be4942
......@@ -233,7 +233,12 @@ static int pyopencv_to(const PyObject* o, Mat& m, const ArgInfo info, bool allow
if( PyInt_Check(o) )
{
double v[] = {PyInt_AsLong((PyObject*)o), 0., 0., 0.};
double v[] = {
static_cast<double>(PyInt_AsLong((PyObject*)o)),
0.,
0.,
0.,
};
m = Mat(4, 1, CV_64F, v).clone();
return true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment