std::vector, explicitly

This commit is contained in:
Peter Braden 2012-11-27 16:54:29 -08:00
parent 4f56834420
commit f90cea5ffd

View File

@ -90,7 +90,7 @@ void update_chann_image(TrackedObject* t, cv::Mat image){
t->mask); //destination
//extract the hue channel, split: src, dest channels
vector<cv::Mat> hsvplanes;
std::vector<cv::Mat> hsvplanes;
cv::split(t->hsv, hsvplanes);
t->hue = hsvplanes[t->channel];