isIdentity property
bool
get
isIdentity
Returns true if Matrix is identity. Identity matrix is:
| 1 0 0 | | 0 1 0 | | 0 0 1 |
@return true if Matrix has no effect
Implementation
bool get isIdentity => c.mnn_cv_matrix_is_identity(ptr);