I am trying to plot the points on a white 500x500 background image.
void Lab1() {
float px[500];
float py[500];
float x, y;
int nrPoints;
//citire puncte din fisier
FILE *pfile;
pfile = fopen("points0.txt", "r");
//punere in variabila
fscanf(pfile, "%d", &nrPoints);
//facem o imagine de 500/500 alba
Mat whiteImg(500, 500, CV_8UC3);
for (int i = 0; i < 500; i++) {
for (int j = 0; j < 500; j++) {
whiteImg.at<Vec3b>(i, j)[0] = 255; // b
whiteImg.at<Vec3b>(i, j)[1] = 255; // g
whiteImg.at<Vec3b>(i, j)[2] = 255; // r
}
}
//punem punctele intr-un vector,pentru a le putea pozitiona ulterior in imaginea alba.
for (int i = 0; i < nrPoints; i++) {
fscanf(pfile, "%f%f", &x, &y);
px[i] = x;
py[i] = y;
//afisam punctele
printf("%f ", px[i]);
printf("%f\n", py[i]);
}
//punem punctele pe imagine
for (int i = 0; i < nrPoints; i++) {
whiteImg.at<Vec3b>(px[i],py[i]) = 0;
}
imshow("img",whiteImg);
fclose(pfile);
//system("pause");
waitKey();
}
and the problem is here:
whiteImg.at<Vec3b>(px[i],py[i]) = 0;
I can't avoid this error:
OpenCV Error: Assertion failed ((unsigned)i0 < (unsigned)size.p[0]) in cv::Mat::at, file c:\users\toder\desktop\anul4\srf\laburi_srf\opencvapplication-vs2015_31_basic\opencv\include\opencv2\core\mat.inl.hpp, line 917
pxandpyare within the bounds of the image? | BTW, the first parameter ofcv::Mat::atis the row number. I readpxas thexcoordinate, which would be column number. - Dan MaĊĦek