File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,10 @@ cdef class Camera:
225
225
assert not image_format.endswith(' p' ), ' Packed data not supported at this point'
226
226
227
227
while self .camera.IsGrabbing():
228
- self .camera.RetrieveResult(timeout, ptr_grab_result)
228
+
229
+ with nogil:
230
+ # Blocking call into native Pylon C++ SDK code, release GIL so other python threads can run
231
+ self .camera.RetrieveResult(timeout, ptr_grab_result)
229
232
230
233
if not ACCESS_CGrabResultPtr_GrabSucceeded(ptr_grab_result):
231
234
error_desc = (< string> (ACCESS_CGrabResultPtr_GetErrorDescription(ptr_grab_result))).decode()
Original file line number Diff line number Diff line change @@ -120,7 +120,8 @@ cdef extern from "pylon/PylonIncludes.h" namespace 'Pylon':
120
120
IPylonDevice* DetachDevice() except +
121
121
void StartGrabbing(size_t maxImages) except + # FIXME: implement different strategies
122
122
bool IsGrabbing()
123
- bool RetrieveResult(unsigned int timeout_ms, CGrabResultPtr& grab_result) except + # FIXME: Timout handling
123
+ # RetrieveResult() is blocking call into C++ native SDK, allow it to be called without GIL
124
+ bool RetrieveResult(unsigned int timeout_ms, CGrabResultPtr& grab_result) nogil except + # FIXME: Timout handling
124
125
INodeMap& GetNodeMap()
125
126
126
127
cdef cppclass DeviceInfoList_t:
You can’t perform that action at this time.
0 commit comments