resizeWindow method
ResizeWindow resizes window to the specified size.
For further details, please see: https://docs.opencv.org/master/d7/dfc/group__highgui.html#ga9e80e080f7ef33f897e415358aee7f7e
Implementation
void resizeWindow(int width, int height) {
cvRunArena((arena) {
cvRun(() => chighgui.Window_Resize(name.toNativeUtf8(allocator: arena).cast(), width, height));
});
}