0

我想使用树莓派 3 和 ubuntu mate 控制理光 theta 360 相机。我通过 apt-get 和 ptp build 从源代码获得了 gphoto2。我还安装了 theta 的最新固件版本。此外,曝光程序设置为 1(手动程序)或 4(快门优先程序)。

手动设置快门速度我尝试了以下方法:

使用 ptpcam:

   ptpcam --set-property=0xD00F --val=\x01\x00\x00\x00\x01\x00\x00\x00

回复:

   Camera: RICOH THETA S
   'UNKNOWN' is set to: 
   Changing property value to x01x00x00x00x01x00x00x00 [(null)] FAILED!!!

使用 gphoto2:

   gphoto2 --set-config shutterspeed=0.1

回复:

   *** Error ***              
   The shutterspeed widget is not configurable.
   *** Error (-2: 'Bad parameters') *** 
4

2 回答 2

1

我在Jason Charcalla的 github ( github: tlapser360 )上找到了一个非常有用的脚本。

在那里,解释说可以发送原始通用请求,如下所示:

   ptpcam -R 0x1016,0xd00f,0,0,0,0,shutter.bin

使用仅包含十六进制格式的快门时间的 shutter.bin 文件。

回复:

   01 00 00 00 04 00 00 00                         - ........        
   --------------------
   Camera: RICOH THETA S
   Sending generic request: reqCode=0x1016, params=[0x0000d00f,0x00000000,0x00000000,0x00000000,0x00000000]
   PTP: response OK

这看起来很不错。最后,可以按如下方式拍摄图像

   gphoto2 --capture-image-and-download
于 2017-02-12T06:19:24.050 回答
0

这是githubCharcalla script上的 Jason ,其中包含有关信息的编辑文件README.md

  1. 从笔记本电脑通过 wifi 连接
  2. 多个标志,带有用于调整日光、阴影、阴天日光等的示例

还包括示例屏幕截图。

于 2017-10-10T21:58:32.587 回答