mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 08:13:04 +04:00
Simple matrix multiplication for Mat in iOS/Android
This commit is contained in:
@@ -715,3 +715,9 @@ public extension Mat {
|
||||
return MatAt(mat: self, indices: indices)
|
||||
}
|
||||
}
|
||||
|
||||
public extension Mat {
|
||||
static func *(lhs:Mat, rhs: Mat) -> Mat {
|
||||
return lhs.matMul(rhs)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user