You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gstreamer pipelines are specified by using a ! character. This check needs to also treat a path including a ! as a stream/URL case. This was found in the following discussion.
It might also be a good idea for v0.6.1 to allow constructing a VideoStreamCv2 directly from an existing VideoCapture object, which would avoid requiring any fixes like this in the future.
@Breakthrough Thanks for the example.
With the use case i am trying to get this run, the input is from a gstreamer pipe.
Like:
# in opencv how i read cap= cv2.VideoCapture("videotestsrc ! appsink")
# As per the example you sharedcam= VideoStreamCv2("videotestsrc ! appsink")
when i tried the example with this it throws error
This is better suited for devices/pipes as opposed to VideoStreamCv2,
which now focuses on files/image sequences/network streams. (#276)
Add tests demonstrating use of a callback when detecting scenes (#273).
gstreamer pipelines are specified by using a
!
character. This check needs to also treat a path including a!
as a stream/URL case. This was found in the following discussion.It might also be a good idea for v0.6.1 to allow constructing a
VideoStreamCv2
directly from an existingVideoCapture
object, which would avoid requiring any fixes like this in the future.Originally posted by @research-boy in #151 (comment)
The text was updated successfully, but these errors were encountered: