I have written a program to display a stored video file using opencv. I attached the code below. I am not getting any errors while building it but no output is disp
opencv
You have to add a very small delay after imshow by using waitKey.
imshow
waitKey
imshow("display",frame); waitKey(10); //Wait 10 milliseconds before showing next frame.