-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbasler_camera.py
357 lines (261 loc) · 11.9 KB
/
basler_camera.py
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
import pypylon
import pypylon.pylon
import numpy as np
class DeviceError(Exception):
pass
class BaslerCamera:
"""
A generic class for connecting Basler cameras and capturing images.
"""
_TIME_OUT = 2000
_PROPERTIES = [
'Address',
'DeviceClass',
'DeviceID',
'FriendlyName',
'FullName',
'IpAddress',
'ModelName',
'SerialNumber', ]
def __init__(self, ip: str = None, serial_number: str = None):
"""The constructor looks for the camera by IP address or serial number (or both). If neither is specified,
the first device is created.
:param ip: IP address
:param serial_number: serial number
"""
self._device = None
self._device_info = pypylon.pylon.CDeviceInfo()
if ip is not None:
self._device_info.SetIpAddress(ip)
if serial_number is not None:
self._device_info.SetSerialNumber(serial_number)
self._converter = None
def _get_device(self):
if self._device is None:
raise NameError('Not initialized')
return self._device
def connect(self):
if self._device is None:
self._device = pypylon.pylon.InstantCamera(pypylon.pylon.TlFactory.GetInstance().CreateFirstDevice(self._device_info))
self.set_converter()
self._get_device().Open()
def disconnect(self):
if self._get_device().IsOpen():
self._get_device().Close()
self._device = None
def __del__(self):
self._converter = None
# ----------------------- getter -----------------------------------
def get_camera_info(self):
"""return a dictionary of a few properties of the camera, including
``Address``, ``DeviceClass``, ``DeviceID``, ``FriendlyName``, ``FullName``, ``IpAddress``, ``ModelName``,
``SerialNumber``
"""
cam = self._get_device()
info = {}
for cam_property in self._PROPERTIES:
is_available = getattr(cam.GetDeviceInfo(), 'Is' + cam_property + 'Available')
if is_available():
attr = getattr(cam.GetDeviceInfo(), 'Get' + cam_property)
info[cam_property] = attr()
return info
def get_dynamic_range(self):
"""return the dynamic range of the image (affected by image format)
:return: a tuple: ``(min_value, max_value)``
"""
cam = self._get_device()
dynamic_range = (cam.PixelDynamicRangeMin.GetValue(), cam.PixelDynamicRangeMax.GetValue())
return dynamic_range
def get_aoi(self):
"""return the area of interest (AOI) of the camera
:return: a tuple: ``(offset_x, offset_y, width, height)``
"""
cam = self._get_device()
return BaslerCamera.get_aoi_helper(cam)
@staticmethod
def get_aoi_helper(cam):
aoi = (cam.Height.GetValue(),
cam.Width.GetValue(),
cam.OffsetX.GetValue(),
cam.OffsetY.GetValue())
return aoi
def get_exposure_time(self):
"""get the exposure time in millisecond (ms)"""
cam = self._get_device()
exposure_time = BaslerCamera.get_exposure_time_helper(cam)
return exposure_time
@staticmethod
def get_exposure_time_helper(cam):
try:
exposure_time = cam.ExposureTime.GetValue() / 1000
except pypylon._genicam.LogicalErrorException:
try:
exposure_time = cam.ExposureTimeAbs.GetValue() / 1000
except pypylon._genicam.LogicalErrorException:
raise RuntimeError(f'Unable to set exposure time.')
return exposure_time
def get_resulting_framerate(self):
"""get the resulting frame rate. If frame rate control is not enabled, return None"""
cam = self._get_device()
resulting_framerate = BaslerCamera.get_resulting_framerate_helper(cam)
return resulting_framerate
@staticmethod
def get_resulting_framerate_helper(cam):
framrate_control_enabled = cam.AcquisitionFrameRateEnable.GetValue()
if not framrate_control_enabled:
return None
try:
resulting_framerate = cam.ResultingFrameRateAbs.GetValue()
except pypylon._genicam.LogicalErrorException:
try:
resulting_framerate = cam.ResultingFrameRate.GetValue()
except pypylon._genicam.LogicalErrorException as e:
raise RuntimeError("Unable to get the resulting framerate")
return resulting_framerate
# ----------------------- setter -----------------------------------
def set_aoi(self, aoi:tuple):
"""set the area of interest (AOI) of the camera.
:param aoi: a tuple: ``(offset_x, offset_y, width, height)``
"""
cam = self._get_device()
BaslerCamera.set_aoi_helper(cam, aoi)
@staticmethod
def set_aoi_helper(cam, aoi: tuple):
offset_x, offset_y, width, height = aoi
cam.Height.SetValue(height)
cam.Width.SetValue(width)
cam.OffsetX.SetValue(offset_x)
cam.OffsetY.SetValue(offset_y)
def set_pixel_format(self, pixel_format_string: str):
"""set acquisition pixel format for the camera.
:param pixel_format_string: a pixel format string, like ``Mono8``, ``Mono12``, ``Mono12Packed``.
Allowed values vary from camera to camera. Refer to camera documentation in the Pylon software for details.
"""
cam = self._get_device()
cam.PixelFormat.SetValue(pixel_format_string)
def set_converter(self, convert=True):
"""when saving TIFF files, always use a 16-bit format with the most significant bit (MSB)
aligned.
:param convert: a boolean
"""
if convert:
self._converter = pypylon.pylon.ImageFormatConverter()
self._converter.OutputPixelFormat = pypylon.pylon.PixelType_Mono16
self._converter.OutputBitAlignment = pypylon.pylon.OutputBitAlignment_MsbAligned
else:
self._converter = None
def set_exposure_time(self, exposure_time: float):
"""set exposure time for the camera.
:param exposure_time: the exposure time, with unit in millisecond (ms).
"""
cam = self._get_device()
BaslerCamera.set_exposure_time_helper(cam, exposure_time)
@staticmethod
def set_exposure_time_helper(cam, exposure_time: float):
"""A helper method for set_exposure_time
This method will attempt to change ``ExposureTime`` property and then ``ExposureTimeAbs``
(as the property name varies from camera to camera). If no property is found,
this method throws an error.
"""
try:
cam.ExposureTime.SetValue(exposure_time * 1000)
except pypylon._genicam.LogicalErrorException:
try:
cam.ExposureTimeAbs.SetValue(exposure_time * 1000)
except pypylon._genicam.LogicalErrorException:
raise RuntimeError(f'Unable to set exposure time.')
def set_acquisition_framerate(self, framerate: float=None):
"""set the acquisition frame rate for the camera.
:param framerate: acquisition framerate
The resulting (i.e. actural) framerate depends on a number of factors
(see the official `Basler Documentation <https://docs.baslerweb.com/resulting-frame-rate.html>`_)
and may not equal the "acquisition frame rate" here.
"""
cam = self._get_device()
BaslerCamera.set_acquisition_framerate_helper(cam, framerate)
@staticmethod
def set_acquisition_framerate_helper(cam, framerate: float=None):
"""A helper method for set_acquisition_framerate
This method will attempt to change ``AcquisitionFrameRate`` property and then ``AcquisitionFrameRateAbs``
(as the property name varies from camera to camera). If no property is found,
this method throws an error.
If framerate is not specified or ``None``, framerate control will be disabled.
"""
if framerate:
try:
cam.AcquisitionFrameRateEnable.SetValue(True)
cam.AcquisitionFrameRate.SetValue(framerate)
except pypylon._genicam.LogicalErrorException:
try:
cam.AcquisitionFrameRateEnable.SetValue(True)
cam.AcquisitionFrameRateAbs.SetValue(framerate)
except pypylon._genicam.LogicalErrorException:
raise RuntimeError(f'Unable to set frame rate.')
else:
cam.AcquisitionFrameRateEnable.SetValue(False)
# ----------------------- helper -----------------------------------
def post_processing(self, grab_result):
if self._converter is not None:
target_image = self._converter.Convert(grab_result)
else:
target_image = pypylon.pylon.PylonImage()
target_image.AttachGrabResultBuffer(grab_result)
return target_image
# --------------------------- grabbing -----------------------------
def grab_one(self):
"""grab one frame and return data as a numpy array"""
cam = self._get_device()
acquired_image = cam.GrabOne(self._TIME_OUT)
result = self.post_processing(acquired_image).GetArray()
acquired_image.Release()
return result
def grab_many(self, n: int):
"""grab n frames and return a numpy array of shape (n, height, width)
:param n: the number of frames
"""
cam = self._get_device()
width = cam.Width.GetValue()
height = cam.Height.GetValue()
r = np.zeros([n, height, width])
i = 0
cam.StartGrabbingMax(n)
while cam.IsGrabbing():
grab_result = cam.RetrieveResult(self._TIME_OUT, pypylon.pylon.TimeoutHandling_ThrowException)
# Image grabbed successfully?
if grab_result.GrabSucceeded():
r[i, :, :] = self.post_processing(grab_result).GetArray()
i += 1
else:
raise DeviceError("Error when grabbing images: " +
str(grab_result.ErrorCode) + str(grab_result.ErrorDescription))
grab_result.Release()
return r
def grab_n_save(self, n: int, save_pattern: str, n_start: int = 1):
r"""grab n frames and save them sequentially as TIFF files according to save_pattern.
:param n: the number of frames to grab
:param save_pattern: a string that contains one single '%d' as the number.
For Windows: ``r'D:\20200212Z\002\002-%d.tiff'`` (Don't miss the leading 'r' which stands for 'raw' string;
alternatively, use double backslash, e.g. ``'D:\\20200212Z\\002\\002-%d.tiff'``)
For Linux: ``'/home/zheli/002/002-%d.tiff'``
:param n_start: the starting number or the sequence; default is 1
Example:
``grab_n_save(200, '/home/zheli/images/0722-%d.tiff')``
Images are saved as ``0722-1.tiff``, ``0722-2.tif``, ...
"""
cam = self._get_device()
i = 0
cam.StartGrabbingMax(n)
while cam.IsGrabbing():
grab_result = cam.RetrieveResult(self._TIME_OUT, pypylon.pylon.TimeoutHandling_ThrowException)
# Image grabbed successfully?
if grab_result.GrabSucceeded():
filename = save_pattern % (n_start + i)
i += 1
r = self.post_processing(grab_result)
img = pypylon.pylon.PylonImage(r)
img.Save(pypylon.pylon.ImageFileFormat_Tiff, filename)
img.Release()
grab_result.Release()
else:
raise DeviceError("Error when grabbing images: " +
str(grab_result.ErrorCode) + str(grab_result.ErrorDescription))