Using OpenCV Grabber with YARP #211
apaikan
started this conversation in
Show and tell
Replies: 1 comment
-
Should we mention this tutorial as a temporary solution for python with yarpdataplayer 😃 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Using OpenCV Grabber with YARP
This is a quick tutorial of how to use Yarp
opencv_grabber
toEnable
opencv_grabber
device in YARPThe
opencv_grabber
device options--name <value>
set the output port name (default is/grabber
)--camera <value>
set the number of the capture device (e.g. 0, for the first camera)--movie <value>
set the name of the video/image sequence files instead of camera for capturing--framerate <value>
set the desired frame rate--width <value>
set the width of the image--height <value>
set the height of the image--loop
enable image looping when capturing from video/image sequence files--flip_x
, flip the image along the x-axis--flip_y
, if present, flip the image along the y-axis--transpose
rotate the image along of 90 degreesExample 1: Capturing from camera (default camera frame size and rate)
Example 2: Capturing from a video file (avi, mp4, ..)
Example 3: Capturing from images sequence (e.g.,
yarpdatadumper
)Beta Was this translation helpful? Give feedback.
All reactions