First time here? Check out the FAQ!
answered 2013-03-16 05:33:44 -0600
from the docs
"images – Source arrays. They all should have the same depth, CV_8U or CV_32F"
so vector<double> is not a valid input. vector<float> should do.
vector<double>
vector<float>