-
Notifications
You must be signed in to change notification settings - Fork 0
/
camera_grabber.go
233 lines (198 loc) · 5.39 KB
/
camera_grabber.go
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
package gopylon
/*
#include "camera.h"
*/
import "C"
import (
"fmt"
"unsafe"
)
type grabber struct {
StreamNums int //支持的stram数量
ghandle C.PYLON_STREAMGRABBER_HANDLE
buffers [][]uint8
NumBuffers int
bufferHandle []C.PYLON_STREAMBUFFER_HANDLE
payloadSize int32
WaitObject WaitObject
}
func (camera Camera) NewGrabber() (*grabber, error) {
g := &grabber{}
var ghandle C.PYLON_STREAMGRABBER_HANDLE
n, err := camera.PylonDeviceGetNumStreamGrabberChannels()
if err != nil {
return g, err
}
err = camera.PylonDeviceGetStreamGrabber(0, &ghandle)
if err != nil {
return g, err
}
g.StreamNums = n
g.ghandle = ghandle
g.NumBuffers = 5
for i := 0; i < g.NumBuffers; i++ {
buf := make([]uint8, g.payloadSize)
g.buffers = append(g.buffers, buf)
}
g.bufferHandle = make([]C.PYLON_STREAMBUFFER_HANDLE, g.NumBuffers)
return g, err
}
func (g grabber) IsSupportStream() bool {
return g.StreamNums >= 1
}
func (g grabber) Open() error {
res := C.CPylonStreamGrabberOpen(g.ghandle)
if C.GENAPI_E_OK != res {
return fmt.Errorf("%d", res)
}
return nil
}
func (g *grabber) NewWaitObj() (WaitObject, error) {
wObject := WaitObject{}
res := C.CPylonStreamGrabberGetWaitObject(g.ghandle, &wObject.Hwait)
if C.GENAPI_E_OK != res {
return wObject, fmt.Errorf("%d", res)
}
g.WaitObject = wObject
return wObject, nil
}
func (g grabber) StopClose() error {
res := C.CPylonStreamGrabberFinishGrab(g.ghandle)
if C.GENAPI_E_OK != res {
return fmt.Errorf("%d", res)
}
res = C.CPylonStreamGrabberClose(g.ghandle)
if C.GENAPI_E_OK != res {
return fmt.Errorf("%d", res)
}
return nil
}
func (g grabber) SetMaxNumBuffer() error {
res := C.CPylonStreamGrabberSetMaxNumBuffer(g.ghandle, C.ulong(g.NumBuffers))
if C.GENAPI_E_OK != res {
return fmt.Errorf("%d", res)
}
return nil
}
func (g grabber) SetMaxBufferSize() error {
res := C.CPylonStreamGrabberSetMaxBufferSize(g.ghandle, C.ulong(g.payloadSize))
if C.GENAPI_E_OK != res {
return fmt.Errorf("%d", res)
}
return nil
}
func (g grabber) PrepareGrab() error {
res := C.CPylonStreamGrabberPrepareGrab(g.ghandle)
if C.GENAPI_E_OK != res {
C.CPrintError(res)
return fmt.Errorf("%s, %#08x", res)
}
return nil
}
func (g grabber) RegisterBuffer() error {
for i := 0; i < g.NumBuffers; i++ {
res := C.CPylonStreamGrabberRegisterBuffer(g.ghandle, unsafe.Pointer(&g.buffers[i]), C.ulong(g.payloadSize), &g.bufferHandle[i])
if C.GENAPI_E_OK != res {
return fmt.Errorf("%d", res)
}
}
return nil
}
func (g grabber) DeRegisterBuffer() error {
fmt.Println("de register buffer")
for i := 0; i < g.NumBuffers; i++ {
res := C.CPylonStreamGrabberDeregisterBuffer(g.ghandle, g.bufferHandle[i])
if C.GENAPI_E_OK != res {
return fmt.Errorf("%d", res)
}
}
return nil
}
/*
* Feed the buffers into the stream grabber's input queue. For each buffer, the API
* allows passing in a pointer to additional context information. This pointer
* will be returned unchanged when the grab is finished. In our example, we use the index of the
* buffer as context information.
*/
func (g grabber) QueueBuffer() error {
for i := 0; i < g.NumBuffers; i++ {
res := C.CPylonStreamGrabberQueueBuffer(g.ghandle, g.bufferHandle[i], unsafe.Pointer(&i))
if C.GENAPI_E_OK != res {
C.CPrintError(res)
return fmt.Errorf("%d", res)
}
}
return nil
}
func (g *grabber) GetPayloadSize(hdev C.PYLON_DEVICE_HANDLE) error {
var value C.size_t
res := C.CPylonStreamGrabberGetPayloadSize(hdev, g.ghandle, &value)
if C.GENAPI_E_OK != res {
return fmt.Errorf("%d", res)
}
g.payloadSize = int32(value)
return nil
}
func (g grabber) StartStreamingIfMandatory() error {
/* Start the image acquisition engine. */
res := C.CPylonStreamGrabberStartStreamingIfMandatory(g.ghandle)
if C.GENAPI_E_OK != res {
return fmt.Errorf("%d", res)
}
return nil
}
func (g grabber) StopStreamingIfMandatory() error {
/* Start the image acquisition engine. */
res := C.CPylonStreamGrabberStopStreamingIfMandatory(g.ghandle)
if C.GENAPI_E_OK != res {
return fmt.Errorf("%d", res)
}
return nil
}
func (g grabber) RetrieveResult() (C.PylonGrabResult_t, error) {
var rslt C.PylonGrabResult_t
var isReady C._Bool
res := C.CPylonStreamGrabberRetrieveResult(g.ghandle, &rslt, &isReady)
if C.GENAPI_E_OK != res {
return rslt, fmt.Errorf("%d", res)
}
if !isReady {
return rslt, fmt.Errorf("retrieve failed")
}
bufferIndex := *(*uint32)(unsafe.Pointer(rslt.Context))
fmt.Println("bufferIndex:", bufferIndex)
switch rslt.Status {
case C.Idle:
case C.Queued:
case C.Grabbed:
fmt.Printf("Grabbed frame into buffer %2d. sizeX: %d. sizeY: %d \n", bufferIndex, rslt.SizeX, rslt.SizeY)
//save image
case C.Canceled:
case C.Failed:
default:
}
res = C.CPylonStreamGrabberQueueBuffer(g.ghandle, rslt.hBuffer, unsafe.Pointer(&bufferIndex))
if C.GENAPI_E_OK != res {
C.CPrintError(res)
return rslt, fmt.Errorf("%d", res)
}
return rslt, nil
}
func (g grabber) FlushBuffersToOutput() error {
res := C.CPylonStreamGrabberFlushBuffersToOutput(g.ghandle)
if C.GENAPI_E_OK != res {
C.CPrintError(res)
return fmt.Errorf("%d", res)
}
return nil
}
func (g grabber) JustRetrieveResult() (C.PylonGrabResult_t, error, bool) {
var rslt C.PylonGrabResult_t
var isReady C._Bool
res := C.CPylonStreamGrabberRetrieveResult(g.ghandle, &rslt, &isReady)
if C.GENAPI_E_OK != res {
C.CPrintError(res)
return rslt, fmt.Errorf("%d", res), bool(isReady)
}
return rslt, nil, bool(isReady)
}