how to combine python and deepstream-test1 python app?

Hello NVIDIA developers, do you have an idea and tutorial on how to combine between OpenCV and deepstream-test1 python app?
my OpenCV code is running a hough circle program, I want to extract the object’s centroid that is detected in the bounding box by using U. I’m a little confused about how to combine these two codes.

Hi,

Sorry that we don’t have a python version OpenCV+Deepstream sample right now.
You can check this comment for the C++ version, and apply the similar change in python interface.
https://devtalk.nvidia.com/default/topic/1047620/deepstream-sdk/how-to-create-opencv-gpumat-from-nvstream-/post/5397368/#5397368

Please noticed that if you are using CPU buffer with OpenCV (cvMat), you might need to apply memory copy between buffers.
It’s more recommended to use GPU based OpenCV API (GpuMat).
However, you will need to check if hough circle detector have GPU implementation or not first.

Thanks.