Result of VideoCapture.read() - Windows vs. osX

asked 2014-07-01 16:13:17 -0600

Kalman Blacky gravatar image

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!

edit retag flag offensive close merge delete

Comments

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

Kalman Blacky gravatar imageKalman Blacky ( 2014-07-01 16:22:04 -0600 )edit