Mat.fromPointer constructor

Mat.fromPointer(
  1. MatPtr mat, [
  2. bool attach = true
])

This method is different from Mat.fromPtr, will construct from pointer directly

Implementation

factory Mat.fromPointer(MatPtr mat, [bool attach = true]) => Mat._(mat, attach);