minPos property

set minPos (int pos)

SetMin sets the trackbar minimum position.

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

Implementation

// ignore: avoid_setters_without_getters
set minPos(int pos) {
  cvRunArena((arena) {
    cvRun(
      () => chighgui.Trackbar_SetMin(
        parent.name.toNativeUtf8(allocator: arena).cast(),
        name.toNativeUtf8(allocator: arena).cast(),
        pos,
      ),
    );
  });
}