Ask Your Question

Andrey_'s profile - activity

2019-04-24 08:09:55 -0600 commented answer could someone incorporate gstreamer pipeline into opencv_contrib aruco sample, please?

and for this file? for the aruco_test that normally takes arguments as ./aruco_test live:2[number of the videocamera] so

2019-04-24 00:44:11 -0600 commented answer could someone incorporate gstreamer pipeline into opencv_contrib aruco sample, please?

the issue there is with that approach aruco sample seems to process only the first image of the network stream

2019-04-23 05:26:16 -0600 commented answer could someone incorporate gstreamer pipeline into opencv_contrib aruco sample, please?

stream works with provided opencv example, in cased it is initiated with the sequence : sudo apt-get install libgstrt

2019-04-23 05:25:55 -0600 commented answer could someone incorporate gstreamer pipeline into opencv_contrib aruco sample, please?

stream works with provided opencv example, in cased it is initiated with the sequence : sudo apt-get install libgstrtsp

2019-04-23 04:16:48 -0600 commented answer could someone incorporate gstreamer pipeline into opencv_contrib aruco sample, please?

Thank you! That thing worked but it shows static image from camera and not a videostream: ./aruco_simple "rtspsrc locat

2019-04-23 04:08:09 -0600 commented answer could someone incorporate gstreamer pipeline into opencv_contrib aruco sample, please?

like /opencv-3.4.6/build/bin/example_aruco_detect_diamonds -v "gst-launch-1.0 rtspsrc location=rtsp://127.0.0.1:8554/tes

2019-04-23 03:53:29 -0600 commented answer could someone incorporate gstreamer pipeline into opencv_contrib aruco sample, please?

Hi Berak. Thank you for following up! I did build opencv with gstreamer support explicitly stated. Moreover, I can play

2019-04-23 03:48:31 -0600 commented answer could someone incorporate gstreamer pipeline into opencv_contrib aruco sample, please?

Hi Berak. Thank you for following up! I hvae the support of gstreamer as I did build opencv with gstreamer support expli

2019-04-22 23:01:35 -0600 asked a question could someone incorporate gstreamer pipeline into opencv_contrib aruco sample, please?

could someone incorporate gstreamer pipeline into opencv_contrib aruco sample, please? include <stdio.h> include

2016-09-23 20:42:57 -0600 asked a question how to get separate left sensor image and right sensor image using opencv

<andrev> could you name a sequence which will capture video as the following does:luvcview -d /dev/video0 -f MJPG -S 1280x480 output

will the following does the trick:cap.set(CV_CAP_PROP_FOURCC ,CV_FOURCC('M', 'J', 'P', 'G') ) if accompained with cap.set(CV_CAP_PROP_FRAME_WIDTH, 1280); and cap.set(CV_CAP_PROP_FRAME_HEIGHT, 480); ? will there be a way to split somehow left and right sensors images which is acquired if using luvcview -d /dev/video0 -f MJPG -S 1280x480 ? If using videocapture cap(0) it just returns a single image Thanks Andrey