在Simple cv中查找Camera ID?

时间:2014-05-14 03:28:05

标签: raspberry-pi raspbian simplecv

我想用两个相机作为我的覆盆子pi。所以我想知道每个摄像头的摄像头索引号。那么在raspbian OS中找到相机索引的方法是什么?(索引号用于在简单CV中制作相机对象)

1 个答案:

答案 0 :(得分:1)

据我所知,引用该书 Practical Computer Vision with Simple CV ......

  

在Linux上,所有外围设备都有为其创建的文件   在/ dev目录中。对于摄像机,文件名以视频开头,以摄像机ID结束,例如/ dev / video0和/ dev / video1。最后的数字等于摄像机ID。

至于告诉哪个摄像机编号到哪个设备(也来自书中)......

from SimpleCV import Camera

# First attached camera
cam0 = Camera(0)

# Second attached camera
cam1 = Camera(1)

# Show a picture from the first camera
img0 = cam0.getImage()
img0.drawText("I am Camera ID 0")
img0.show()

# Show a picture from the first camera
img1 = cam1.getImage()
img1.drawText("I am Camera ID 1")
img1.show()