setWindowTitle method

void setWindowTitle(
  1. String title
)

SetWindowTitle updates window title.

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

Implementation

void setWindowTitle(String title) {
  cvRunArena((arena) {
    cvRun(
      () => chighgui.Window_SetTitle(
        name.toNativeUtf8(allocator: arena).cast(),
        title.toNativeUtf8(allocator: arena).cast(),
      ),
    );
  });
}