Display image using highgui for faster frame rate
imdisplay(im, wn)
Input image which should be in RGB format.
Graphic window name to differentiate one from another.
This is a special function to display the sequences of images from webcam for better speed. This graphic window must be close by : 1. Pressing Esc key with the window on focus. 2. Calling imdestroy(windowname)
im = imread(fullpath(getIPCVpath() + "/images/baboon.png")); imdisplay(im,'MyImage'); imdestroy('MyImage'); | ![]() | ![]() |