Moe*_*pas 5 usb camera artoolkit
我在64位华硕的Ubuntu 12.10上安装了ARToolKit.安装没有错误,所以我觉得我没事.但是当我想尝试一个例子时它找不到相机.如果我没有填写任何东西, char *vconf = "";
我得到
No video config string supplied, using defaults.
ioctl failed
Run Code Online (Sandbox Code Playgroud)
最常见的解决方案意味着
char *vconf = "v4l2src device=/dev/video0 use-fixed-fps=false ! ffmpegcolorspace ! capsfilter caps=video/x-raw-rgb,width=640,height=480 ! identity name=artoolkit ! fakesink";
但这对我不起作用.我明白了
r@r-K55VD:~/Downloads/Artoolkit-on-Ubuntu-12.04-master/bin$ ./simpleTest
Using supplied video config string [v4l2src device=/dev/video0 use-fixed-fps=false ! ffmpegcolorspace ! capsfilter caps=video/x-raw-rgb,width=640,height=480 ! identity name=artoolkit ! fakesink].
ARVideo may be configured using one or more of the following options,
separated by a space:
DEVICE CONTROLS:
-dev=filepath
specifies device file.
-channel=N
specifies source channel.
-noadjust
prevent adjusting the width/height/channel if not suitable.
-width=N
specifies expected width of image.
-height=N
specifies expected height of image.
-palette=[RGB|YUV420P]
specifies the camera palette (WARNING:all are not supported on each camera !!).
IMAGE CONTROLS (WARNING: every options are not supported by all camera !!):
-brightness=N
specifies brightness. (0.0 <-> 1.0)
-contrast=N
specifies contrast. (0.0 <-> 1.0)
-saturation=N
specifies saturation (color). (0.0 <-> 1.0) (for color camera only)
-hue=N
specifies hue. (0.0 <-> 1.0) (for color camera only)
-whiteness=N
specifies whiteness. (0.0 <-> 1.0) (REMARK: gamma for some drivers, otherwise for greyscale camera only)
-color=N
specifies saturation (color). (0.0 <-> 1.0) (REMARK: obsolete !! use saturation control)
OPTION CONTROLS:
-mode=[PAL|NTSC|SECAM]
specifies TV signal mode (for tv/capture card).
Run Code Online (Sandbox Code Playgroud)
什么是找出究竟应该放什么的方法论方法 char *vconf = " "
?因为我觉得我随机尝试了很多变化,但没有任何作用.我知道它需要像/ dev/video0这样的路径,但是空气中还有什么东西对我而言.
小智 2
char *vconf = "v4l2src device=/dev/video0 use-fixed-fps=false !
ffmpegcolorspace ! capsfilter
caps=video/x-raw-rgb,width=640,height=480 ! identity name=artoolkit !
fakesink";
Run Code Online (Sandbox Code Playgroud)
您尝试的上述配置适用于 GStreamer 驱动程序。由于您使用的是 VideoLinuxV4L ,而不是上面的使用:
char *vconf = "-dev=/dev/video0 ";
Run Code Online (Sandbox Code Playgroud)
更多内容可以参考“{ARtoolkit文件夹}/doc/video/index.html”
归档时间: |
|
查看次数: |
2115 次 |
最近记录: |