imshow method

void imshow(
  1. Mat img
)

IMShow displays an image Mat in the specified window. This function should be followed by the WaitKey function which displays the image for specified milliseconds. Otherwise, it won't display the image.

For further details, please see: http://docs.opencv.org/master/d7/dfc/group__highgui.html#ga453d42fe4cb60e5723281a89973ee563

Implementation

void imshow(Mat img) {
  cvRunArena((arena) {
    cvRun(() => chighgui.Window_IMShow(name.toNativeUtf8(allocator: arena).cast(), img.ref));
  });
}