Skip to content

Commit 258fe67

Browse files
author
richardl
committedOct 11, 2016
Release GIL for internal C++ blocking I/O call RetrieveResult() within grab_image()
1 parent c966c1a commit 258fe67

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

‎cython/factory.pyx

+4-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,10 @@ cdef class Camera:
225225
assert not image_format.endswith('p'), 'Packed data not supported at this point'
226226

227227
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)
229232

230233
if not ACCESS_CGrabResultPtr_GrabSucceeded(ptr_grab_result):
231234
error_desc = (<string>(ACCESS_CGrabResultPtr_GetErrorDescription(ptr_grab_result))).decode()

‎cython/pylon_def.pxd

+2-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ cdef extern from "pylon/PylonIncludes.h" namespace 'Pylon':
120120
IPylonDevice* DetachDevice() except +
121121
void StartGrabbing(size_t maxImages) except + #FIXME: implement different strategies
122122
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
124125
INodeMap& GetNodeMap()
125126

126127
cdef cppclass DeviceInfoList_t:

0 commit comments

Comments
 (0)
Please sign in to comment.