Feed images instead of videos into DeepStream

I would like to use the Python DeepStream SDK to process individual images rather than stream based sources such as files and rtsp. My images will be coming in on a random basis due to the nature of collecting these images. Is there a way that I can feed these images into DeepStream rather than trying to pre-build a file or other stream beforehand?

I don’t think they have a source for that in deepsteam-app, but your use case fits well for appsrc
You can create an appsrc element and inject buffers directly in the pipeline whenever you want.
Refer to this example Appsrc with numpy input in Python - #8 by gautampt6ul

1 Like

Thanks - that does look like what I am looking for. I’ll give it a try. Appreciate the help.

Is this still an issue to support? Thanks

I haven’t tried it yet, but it looks like it the solution I was looking for. I’ll close it out.

I think multifilesrc plugin is better than appsrc.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.