3

I am trying to extract the first quarter of a 100x100 pixel image. I was thinking of using the cv::rect function from a roi-definition (see code example below). Furthermore my original image is part of a vector-array (here in the code-example below, I only work with one image - later there will be several but this is probably irrelevant for the example here).

What I am observing is a strange behaviour: The newly created image "Test" seems to be ok until about half of its rows. Then it shows completely random pixels (see example image).

What is the cause ?

Image-description: left: orig 100x100 image / right: created "Test" image with errors...

left: orig 100x100 image  / right: created "Test" image with errors...

std::vector<cv::Mat> Image(1);   // create vector array of one 100x100 pixel image
Image[0] = cv::imread(argv[1]);  // or in iOS:  Image[0] = [in_image CVMat];
cv::Rect roi1 = cv::Rect(0, 0, Image[0].cols/2, Image[0].rows/2);
cv::Mat Test = Image[0](roi1);   
imshow("final_result", Test);    // the Test image has error rows !!!!!!! Why ????????

Another example: The second example shows the original 150x150 pixel image to the left. The rectangle rect1 is 100x100pixel. Again - same problem: The cropped image shows good performance at the beginning.But from a certain row, the pixels get messed up (in this example they turned all black...). Below is the original iOS-code. What could be the problem ??? (I am using iOS-simulator - could this be the issue??

Code for example2:

UIImage *in_image = [UIImage imageNamed:@"image013.jpg"];    // 150 x 150 pixel image
cv::Mat cv_in_image = [in_image CVMat];

NSLog(@"cv_in_image cols = %i", cv_in_image.cols);
NSLog(@"cv_in_image rows = %i", cv_in_image.rows);

cv::Rect rect1;
rect1.x = 28;
rect1.y = 27;
rect1.width = 100;
rect1.height = 100;

NSLog(@"rect1 x = %i", rect1.x);
NSLog(@"rect1 y = %i", rect1.y);
NSLog(@"rect1 width = %i", rect1.width);
NSLog(@"rect1 height = %i", rect1.height);

cv::Mat Image1 = cv_in_image(rect1);

NSLog(@"Image1 cols = %i", Image1.cols);
NSLog(@"Image1 rows = %i", Image1.rows);

self.imageView0.image = [[UIImage alloc] UIImageFromCVMat:(Image1)];

The NSLog sais:

cv_in_image cols = 150
cv_in_image rows = 150
rect1 x = 28
rect1 y = 27
rect1 width = 100
rect1 height = 100
Image1 cols = 100
Image1 rows = 100

Example2: Image to the left: 150x150 pixels / rectangle (Image1) to the right shows errors !! Here you can find the original image from example2: link enter image description here

iKK
  • 6,394
  • 10
  • 58
  • 131
  • 1
    This is quite strange. Does it happen if you dont store your image in a std::vector? Have you check the dimension of the rect, and the image test? Is this really the code you are using? Isn't there some color/grayscale conversion at some point? – remi Jul 16 '14 at 12:43
  • This is quite strange.. I have tested the very same code and no clue about what is causing the error – Яois Jul 16 '14 at 12:43
  • 1
    @remi the two of us writing "this is quite strange" at almost the same time is also quite strange.. :D – Яois Jul 16 '14 at 12:44
  • This is coincidence (not strange) :) From what you said, remi, I am not quite sure from your statement whether you were able to reproduce the error or not ?? – iKK Jul 16 '14 at 12:53
  • My answers to your questions remi: Yes it happens also if I do not store the image in a std::vector. Yes, the dimension of rect are checked (they seem fine to me, cols=50, rows=50,.. same for the Test-image: cols=50, rows=50). And it is exactly the code I am using (except I use the iOS-version to read teh image (see comment at line two of my example-code). And no, there is no color-greyscale-conversion: The original image is a color-image that seems almost black-and-white. Same error occurs with greyscale-image (except that the noisy-error-pixels end up in grey as well)... Any other clues ??? – iKK Jul 16 '14 at 12:53
  • add `imshow("Image[0]", Image[0]);` immediately after the other the other `imshow()` to see if the Mat really is corrupted. – Bull Jul 16 '14 at 12:54
  • I am not using imshow but the iOS conversion: self.imageView.image = [[UIImage alloc] UIImageFromCVMat:Test]; Could that create some problems ? – iKK Jul 16 '14 at 12:56
  • One would hope not, but ... (sorry I know nothing about iOS) – Bull Jul 16 '14 at 13:02
  • 1
    Could you share the original image? – herohuyongtao Jul 16 '14 at 13:29
  • I would try to display the original image with your code to see if that works. – don_q Jul 16 '14 at 14:21
  • to user3275885: yep - that works perfectly !! I did test that already... Only the image created with the code "cv::Mat Image1 = cv_in_image(rect1);" seems to have an issue. The image-cropping does not work. Is there another way to do so ?? – iKK Jul 16 '14 at 14:25

1 Answers1

3

I finally found a workarround for this problem:

--> use the function "cvtColor"

UIImage *in_image = [UIImage imageNamed:@"image013.jpg"];    // 150 x 150 pixel image
cv::Mat cv_in_image = [in_image CVMat];

NSLog(@"cv_in_image cols = %i", cv_in_image.cols);
NSLog(@"cv_in_image rows = %i", cv_in_image.rows);

cv::Rect rect1;
rect1.x = 28;
rect1.y = 27;
rect1.width = 100;
rect1.height = 100;

NSLog(@"rect1 x = %i", rect1.x);
NSLog(@"rect1 y = %i", rect1.y);
NSLog(@"rect1 width = %i", rect1.width);
NSLog(@"rect1 height = %i", rect1.height);

cv::Mat Image1 = cv_in_image(rect1);

// This is the workarround !!!!!!!!!!!
/  -----------------------------------
// Use cvtColor-function twice in a row...
cv::cvtColor(Image1, Image1, cv::COLOR_RGB2BGR);  // after that function, the error is gone
cv::cvtColor(Image1, Image1, cv::COLOR_BGR2RGB);  // I use the function a second time to get back the original color-set...

NSLog(@"Image1 cols = %i", Image1.cols);
NSLog(@"Image1 rows = %i", Image1.rows);

self.imageView0.image = [[UIImage alloc] UIImageFromCVMat:(Image1)];

The ROI can finally be created as can be seen in the image documentation below : (...Really not sure why this suddenly works that way with the UIImage-View in iOS !! ????) enter image description here

iKK
  • 6,394
  • 10
  • 58
  • 131