moveWindow method

void moveWindow(
  1. int x,
  2. int y
)

MoveWindow moves window to the specified position.

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

Implementation

void moveWindow(int x, int y) {
  cvRunArena((arena) {
    cvRun(() => chighgui.Window_Move(name.toNativeUtf8(allocator: arena).cast(), x, y));
  });
}