forked from adamgf/react-native-opencv3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mats.js
90 lines (79 loc) · 2.39 KB
/
mats.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// author Adam G. Freeman, adamgf@gmail.com 01/26/2019
// Of course this is just a tiny subset of all the mat stuff ...
import { NativeModules } from 'react-native';
const { RNOpencv3 } = NativeModules;
import { CvType } from './constants';
export class Mat {
constructor(numRows, numCols, cvtype, scalarval) {
if (numRows && numCols && cvtype) {
this.rows = numRows
this.cols = numCols
this.CvType = cvtype
}
if (scalarval) {
this.CvScalar = scalarval
}
}
init = async() => {
let res
if (this.rows && this.cols && this.CvType && this.CvScalar) {
res = await RNOpencv3.MatWithScalar(this.rows, this.cols, this.CvType, this.CvScalar)
}
else if (this.rows && this.cols && this.CvType) {
res = await RNOpencv3.MatWithParams(this.rows, this.cols, this.CvType)
}
else {
res = await RNOpencv3.Mat()
}
res.setTo = this.setTo.bind(res)
res.get = this.get.bind(res)
res.put = this.put.bind(res)
res.t = this.t.bind(res)
this.matIndex = res.matIndex
return res
}
setTo = (color) => {
// of course this could be implemented as a CvInvoke but
// since it is probably such a common op ...
RNOpencv3.setTo(this, color)
}
get = async(rownum, colnum, data) => {
// not sure if data needs to be returned here ...
// this has not been tested yet ...
data = await RNOpencv3.getMatData(this, rownum, colnum)
}
put = (rownum, colnum, v0, v1, v2, v3) => {
RNOpencv3.put(this, rownum, colnum, [v0, v1, v2, v3])
}
t = () => {
RNOpencv3.transpose(this)
}
}
export class MatOfInt {
constructor(lowintvalue, highintvalue) {
this.lowintvalue = lowintvalue
this.highintvalue = highintvalue
}
init = async() => {
if (this.highintvalue && this.highintvalue != this.lowintvalue) {
return await RNOpencv3.MatOfInt(this.lowintvalue, this.highintvalue)
}
else {
return await RNOpencv3.MatOfInt(this.lowintvalue, this.lowintvalue)
}
}
}
export class MatOfFloat {
constructor(lowfloatvalue, highfloatvalue) {
this.lowfloatvalue = lowfloatvalue
this.highfloatvalue = highfloatvalue
}
init = async() => {
if (this.highfloatvalue && this.highfloatvalue != this.lowfloatvalue) {
return await RNOpencv3.MatOfFloat(this.lowfloatvalue, this.highfloatvalue)
}
else {
return await RNOpencv3.MatOfFloat(this.lowfloatvalue, this.lowfloatvalue)
}
}
}