inv method

UMat inv({
  1. int method = DECOMP_LU,
})

matrix inversion by means of matrix expressions

Implementation

UMat inv({int method = DECOMP_LU}) {
  final p = calloc<cvg.UMat>();
  cvRun(() => ccore.cv_UMat_inv(ref, method, p, ffi.nullptr));
  return UMat._(p);
}