1
我在論文(文憑)中使用了OpenCV的MeanShiftAlgorithm。 QT4.6中的例子運行良好。只有我們自己的GUI應用程序,在這裏我們收到320x3x240 RGB流,給它以下錯誤消息:OpenCV錯誤:聲明失敗(j <nimages)
OpenCV Error: Assertion failed (j < nimages) in histPrepareImages, file /home/luca/OpenCvSDK/opencv-src/modules/imgproc/src/histogram.cpp, line 148
terminate called after throwing an instance of 'cv::Exception'
what(): /home/luca/OpenCvSDK/opencv-src/modules/imgproc/src/histogram.cpp:148: error: (-215) j < nimages in function histPrepareImages
GUI是Ubuntu的下編程與Eclipse/QT4.6。這裏是代碼:
// Mean Shift Algorithm On
minSat=65;
ch[1]={0};
if (m_meanShiftAlgoOn)
{
if (m_firstFrame)
{
m_firstFrame = false;
// Define ROI
imageROI= m_currentFrame( cv::Rect(m_meanShift_xPos,m_meanShift_yPos,
m_meanShift_width,m_meanShift_height));
cv::rectangle(m_currentFrame, cv::Rect(m_meanShift_xPos,m_meanShift_yPos,m_meanShift_width,
m_meanShift_height),cv::Scalar(0,0,255));
// Get the Hue histogram
ColorHistogram hc;
cv::MatND colorhist= hc.getHueHistogram(imageROI,minSat);
finder.setHistogram(colorhist);
finder.setThreshold(0.2f);
// Convert to HSV space
cv::cvtColor(m_currentFrame, hsv, CV_BGR2HSV);
// Split the image
cv::split(hsv,v);
// Eliminate pixels with low saturation
cv::threshold(v[1],v[1],minSat,255,cv::THRESH_BINARY);
// for debug only: shows the frame with threshold
//m_currentFrame = v[1];
// Get back-projection of hue histogram
result1= finder.find(hsv,0.0f,180.0f,ch,1);
// for debug only: shows the frame with back-projection of hue histogram
//m_currentFrame = result1;
cv::bitwise_and(result1,v[1],result1);
// for debug only: shows the frame with bitwise_and of src1 and src2
//m_currentFrame = result1;
}
else
{
// Second frame
// Convert to HSV space
cv::cvtColor(m_currentFrame, hsv, CV_BGR2HSV);
// Split the frame
cv::split(hsv,v);
// Eliminate pixels with low saturation
cv::threshold(v[1],v[1],minSat,255,cv::THRESH_BINARY);
// for debug only: shows the frame with eliminated pixels with low saturation
//m_currentFrame = v[1];
// Get back-projection of hue histogram
result2= finder.find(hsv,0.0f,180.0f,ch,1); // here code crash
// for debug only: shows the frame with back-projection of hue histogram
//m_currentFrame = result2;
// Eliminate low stauration pixels
cv::bitwise_and(result2,v[1],result2);
// Get back-projection of hue histogram
finder.setThreshold(-1.0f);
result2= finder.find(hsv,0.0f,180.0f,ch,1);
cv::bitwise_and(result2,v[1],result2);
cv::Rect rect(m_meanShift_xPos,m_meanShift_yPos,m_meanShift_width,m_meanShift_height);
cv::rectangle(m_currentFrame, rect, cv::Scalar(0,0,255));
cv::TermCriteria criteria(cv::TermCriteria::MAX_ITER,10,0.01);
cv::rectangle(m_currentFrame, rect, cv::Scalar(0,255,0));
}
}
else
m_firstFrame = true;
針對所述ROI的參數是:
m_meanShift_xPos= 80
m_meanShift_yPos= 120
m_meanShift_width= 80
m_meanShift_height= 90
這裏仍然在文件histogramm.cpp的功能/ LINE 1163(表示爲在錯誤消息)
static void histPrepareImages(const Mat* images, int nimages, const int* channels,
const Mat& mask, int dims, const int* histSize,
const float** ranges, bool uniform,
vector<uchar*>& ptrs, vector<int>& deltas,
Size& imsize, vector<double>& uniranges)
{
int i, j, c;
CV_Assert(channels != 0 || nimages == dims);
imsize = images[0].size();
int depth = images[0].depth(), esz1 = (int)images[0].elemSize1();
bool isContinuous = true;
ptrs.resize(dims + 1);
deltas.resize((dims + 1)*2);
for(i = 0; i < dims; i++)
{
if(!channels)
{
j = i;
c = 0;
CV_Assert(images[j].channels() == 1);
}
else
{
c = channels[i];
CV_Assert(c >= 0);
for(j = 0; j < nimages; c -= images[j].channels(), j++)
if(c < images[j].channels())
break;
CV_Assert(j < nimages); // line 148
}
CV_Assert(images[j].size() == imsize && images[j].depth() == depth);
if(!images[j].isContinuous())
isContinuous = false;
ptrs[i] = images[j].data + c*esz1;
deltas[i*2] = images[j].channels();
deltas[i*2+1] = (int)(images[j].step/esz1 - imsize.width*deltas[i*2]);
}
if(mask.data)
{
CV_Assert(mask.size() == imsize && mask.channels() == 1);
isContinuous = isContinuous && mask.isContinuous();
ptrs[dims] = mask.data;
deltas[dims*2] = 1;
deltas[dims*2 + 1] = (int)(mask.step/mask.elemSize1());
}
if(isContinuous)
{
imsize.width *= imsize.height;
imsize.height = 1;
}
if(!ranges)
{
CV_Assert(depth == CV_8U);
uniranges.resize(dims*2);
for(i = 0; i < dims; i++)
{
uniranges[i*2] = histSize[i]/256.;
uniranges[i*2+1] = 0;
}
}
else if(uniform)
{
uniranges.resize(dims*2);
for(i = 0; i < dims; i++)
{
CV_Assert(ranges[i] && ranges[i][0] < ranges[i][1]);
double low = ranges[i][0], high = ranges[i][1];
double t = histSize[i]/(high - low);
uniranges[i*2] = t;
uniranges[i*2+1] = -t*low;
}
}
else
{
for(i = 0; i < dims; i++)
{
size_t j, n = histSize[i];
for(j = 0; j < n; j++)
CV_Assert(ranges[i][j] < ranges[i][j+1]);
}
}
}
預先感謝任何答案...
當你問一個問題時,顯示你的代碼是很好的,但是展示你的研究成果也是很好的。第148行斷言失敗:現在使用調試器或簡單的'printf',當斷言失敗時檢查'i','j','c'等的值。 – Simon
[This question](http://stackoverflow.com/questions/16840968/multi-channel-back-projection-assertion-j-nimages)可能會有所幫助。我不知道,因爲你不會發布你的'find()'方法的代碼。 – Aurelius