I'm using OpenCV to iterate through an image and find the colour of each pixel, here's some of the code I'm using:
IplImage* img = cvLoadImage("c:\\test.png");
int pixels = img->height * img->width;
int channels = img->nChannels;
for (int i = 0; i < pixels*channels; i+= channels)
{
unsigned char red = img->imageData[i + 2];
unsigned char green = img->imageData[i + 1];
unsigned char blue = img->imageData[i];
outputRGBValues(red, green, blue);
if (red == REDCOLOUR && green == GREENCOLOUR && blue == BLUECOLOUR)
{
count++;
}
}
cvReleaseImage(&img);
When I run it, it outputRGBValues outputs negative values. Most often R, G, B = -1, but occasionally other negative numbers and a handful of positive numbers. I've heard something about uninitialized memory contents, and pixels not being allocated to the memory properly. But I'm don't really understand it and definitely don't know how to fix it. What am I doing wrong and how can I fix it?
UPDATE
After fixing the code (as above) with fschmitt's changes, I'm a bit closer. This is the image I'm using, if it's any help. Quite hard to see, but it's just a 5*3 'V' of black pixels with one green one at the bottom.
Running the code on it, I get this output:
0 0 0
255 255 255
255 255 255
255 255 255
0 0 0
255 255 186
0 0 255
255 255 0
And it continues
The first 5 lines are fine, exactly what they should be. That's the top row of the image. The next row, 6th line onwards is wrong. It should be:
255 255 255
255 255 255
0 0 0
I'm not sure what's causing this. How can it work for the top line and not the second? Is there some sort of mismatch, and its taking the value one bit to the left of where it should?
I don't understand why you are accessing pixel data blindly (by 1D index) while you already know the image dimension (proved by the usage of
IplImage::height
andIplImage::width
) and opencv does provide function to access pixel value (cvGet*D
).You are getting odd values in the direct pointer access because you did not factor in the byte padding performed by OpenCV. You may find in 8 bit images, (width*nChannels <= widthStep) for this reason.
A quick revised code can be as follow:
Also, note that usually OpenCV arrange data in BGR format, which can verified at
IplImage::channelSeq
. Do not confused byIplImage::colorModel
, which tells the color model.I'll go with Paul R suggestion that you should find a reference and understand the library before attempting to use them.
I've never used OpenCV, but I would imagine that
cvCreateImage
doesn't initialise the contents of the image, and certainly not to anything meaningful.Try this:
Quite some issues here: