-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.go
More file actions
77 lines (61 loc) · 1.04 KB
/
data.go
File metadata and controls
77 lines (61 loc) · 1.04 KB
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
package goreco
import "gocv.io/x/gocv"
type RecDataType int
const (
TypeRecDataBytes = iota
TypeRecDataJpeg
)
type RecData interface {
GetType() RecDataType
GetData() []byte
}
type RecDataBytes interface {
RecData
Cols() int
Raws() int
Mt() gocv.MatType
}
type RecDataJpeg interface {
RecData
}
type RecDataJ struct {
}
type recData struct {
recDataType RecDataType
data []byte
}
type recDataB struct {
rows, cols int
mt gocv.MatType
}
func NewRecBytesJpeg(data []byte) RecData {
return struct {
*recData
}{
&recData{TypeRecDataJpeg, data},
}
}
func NewRecBytesData(data []byte, cols, rows int, mt gocv.MatType) RecData {
return struct {
*recData
*recDataB
}{
&recData{TypeRecDataBytes, data},
&recDataB{rows, cols, mt},
}
}
func (r *recData) GetType() RecDataType {
return r.recDataType
}
func (r *recData) GetData() []byte {
return r.data
}
func (r *recDataB) Cols() int {
return r.Cols()
}
func (r *recDataB) Rows() int {
return r.rows
}
func (r *recDataB) Mt() gocv.MatType {
return r.mt
}