我是靠谱客的博主 踏实汽车,最近开发中收集的这篇文章主要介绍python control_使用digicamcontrol使用Python控制尼康相机?,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

下面是一个有效的解决方案,使用python3.5(通过Anaconda安装),顺便说一句

ISO和快门的参数是硬连线的,但是如果你需要的话,这应该可以让你继续工作。在import sys

import os

import subprocess

import datetime

def func_TakeNikonPicture(input_filename):

camera_command = 'C:Program Files (x86)digiCamControlCameraControlCmd.exe'

camera_command_details = '/filename ./' + input_filename + ' /capture /iso 500 /shutter 1/30 /aperture 1.8'

print('camera details = ',camera_command_details)

full_command=camera_command + ' ' + camera_command_details

p = subprocess.Popen(full_command, stdout=subprocess.PIPE, universal_newlines=True, shell=False)

(output, err) = p.communicate()

#This makes the wait possible

p_status = p.wait(1)

# print(p.stdout.readline())

#This will give you t

最后

以上就是踏实汽车为你收集整理的python control_使用digicamcontrol使用Python控制尼康相机?的全部内容,希望文章能够帮你解决python control_使用digicamcontrol使用Python控制尼康相机?所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(83)

评论列表共有 0 条评论

立即
投稿
返回
顶部