Ask Your Question

Kalman Blacky's profile - activity

2014-07-01 16:22:04 -0600 commented question Result of VideoCapture.read() - Windows vs. osX

The difference between images is a bit hard to notice from just looking at them: pixels values differ by 3-6 in all three RGB channels

2014-07-01 16:16:58 -0600 received badge  Student (source)
2014-07-01 16:13:17 -0600 asked a question Result of VideoCapture.read() - Windows vs. osX

Hi,

I run this piece of code on two machines: windows 8 with opencv 2.4.8 and osX with opencv 2.4.8.2:

VideoCapture capture(capturePath);

Mat frame;

if (!capture.isOpened()){ return -1; }

capture.read(frame);

For the same capture file and frame, I get different images:

image description image description

I'm not sure what the different behavior could be. If you have any idea, I'd greatly appreciate it! Thank you so much for your help and effort!