-
Notifications
You must be signed in to change notification settings - Fork 4
/
Canon_Remote_Control.py
237 lines (191 loc) · 7.09 KB
/
Canon_Remote_Control.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import streamlit as st
from PIL import Image
import streamlit as st
import requests
import cv2
from ccapi.ccapi import CCAPI
about = """
This application uses is used to control a Canon camera remotely.
The copyright of the application is with Gregor von Laszewski,
laszewski@gmail.com and is under Apache Licence.
It uses internally the Canon CCAPI. The current implementation of the
GUI portion uses StreamIt which has a separate copyright."
"""
st.set_page_config(
page_title="Canon Camera Control",
# page_icon=":alert:",
layout="wide",
initial_sidebar_state="expanded",
menu_items={
'Get Help': 'https://google.com',
'Report a bug': "https://google.com",
'About': about
}
)
# tab_preview, tab_general, tab_focusbracketing, tab_video = \
# st.tabs(["Preview", "Settings", "Focusbracketing", "Video"])
tab_preview, tab_general, tab_focusbracketing = \
st.tabs(["Preview", "Settings", "Focusbracketing"])
st.session_state.image_available = False
if not st.session_state.image_available:
st.sidebar.markdown("# Canon Remote Control")
values = {}
st.session_state.camera_values = values
camera = CCAPI()
settings = camera.get_settings()
def preview_stream(position=tab_preview):
camera = CCAPI()
device = camera.get_deviceinformation()
name = "./preview.jpeg"
# camera.release()
r = camera.liveview(display="on", size="medium")
r = camera.get_liveview_image(name)
# camera.preview(name)
area = position.empty()
area.markdown("# Preview")
while True:
try:
r = camera.get_liveview_image(name)
image = Image.open('./preview.jpeg')
area.image(image, caption='Preview')
area.session_state.image_available = True
k = cv2.waitKey(100)
if k == ord("q"):
break
except Exception as e:
area.write("error loading preview")
area.write(e)
print("preview")
print("stream done")
def preview_image(position=tab_preview):
camera = CCAPI()
device = camera.get_deviceinformation()
name = "./preview.jpeg"
# camera.release()
r = camera.liveview(display="on", size="medium")
for i in range(1): # for some reason it does not work for more
try:
r = camera.get_liveview_image(name)
image = Image.open('./preview.jpeg')
area = position.empty()
area = position.container()
area.markdown("# Preview")
area.image(image, caption=f'Preview {i}')
position.session_state.image_available = True
except Exception as e:
position.write("error loading preview" + str(e))
print("preview")
# placeholder_image = position.empty()
# placeholder_header = position.empty()
#
# placeholder_header.markdown("# Preview")
# while True:
# k = cv2.waitKey(0)
# # press 'q' to exit
# if k == ord('q'):
# break
#
# r = camera.get_liveview_image(name)
# # camera.preview(name)
#
# try:
# # image = Image.open('./preview.jpeg')
# placeholder_image.image(image, caption='Preview')
# placeholder_image.session_state.image_available = True
# except Exception as e:
# placeholder_image.write("error loading preview" + e)
# print("preview")
def stack():
print("stack")
camera = CCAPI()
device = camera.get_deviceinformation()
camera.shoot(af=False)
def generate_selectbox(label=None,
key=None,
position=st.sidebar,
on_change=preview_image):
version = camera.get_settings_version(key=key)
value = settings[version][key]["value"]
ability = settings[version][key]["ability"]
disabled = len(ability) == 0
if not disabled:
index = ability.index(value)
component = position.selectbox(label=label, key=key, options=ability, index=index, on_change=on_change)
else:
component = position.selectbox(label=label,
key=key,
options=["av is disabled and not be set"],
index=0,
disabled=disabled)
return component
def generate_slider(label=None, key=None, position=st.sidebar):
version = camera.get_settings_version(key=key)
value = settings[version][key]["value"]
ability = settings[version][key]["ability"]
minimum = ability["min"]
maximum = ability["max"]
step = ability["step"]
if len(ability) != 0:
component = position.slider(label=label,
key=key,
value=value,
min_value=minimum,
max_value=maximum,
step=step)
else:
position.markdown(f"**{key}** can not be set")
component = None
return component
def save():
print("save")
print(st.session_state.camera_values)
for key in ["iso",
"av",
"tv",
"drive",
"aeb",
"flash",
"shuttermode",
# ("exposure", "ver100"),
"focusbracketing",
"focusbracketing_numberofshots",
"focusbracketing_focusincrement"]:
print(key, ":", st.session_state.camera_values[key])
camera.focusbracketing = st.session_state.camera_values["focusbracketing"]
camera.exposuresmoothing = True
camera.numberofshots = st.session_state.camera_values["focusbracketing_numberofshots"]
camera.focusincrement = st.session_state.camera_values["focusbracketing_focusincrement"]
st.sidebar.markdown("# Shoot")
st.sidebar.button("Save Parameters to :camera:", on_click=save)
st.sidebar.button("Preview Image from :camera:", on_click=preview_image)
st.sidebar.button("Preview Stream from :camera:", on_click=preview_stream)
st.sidebar.button("Create Stack :camera: ... :camera:", on_click=stack)
tab_focusbracketing.markdown("# Focusbracketing")
for label, key in [("Focusbracketing", "focusbracketing")]:
values[key] = generate_selectbox(position=tab_focusbracketing, label=label, key=key)
for label, key in [("Number of shots", "focusbracketing_numberofshots"),
("Focus increment", "focusbracketing_focusincrement")]:
values[key] = generate_slider(position=tab_focusbracketing, label=label, key=key)
tab_general.markdown("# General")
for key in ["iso",
"av",
"tv",
"drive",
"aeb",
"flash",
"shuttermode",
"afmethod"
# ("exposure", "ver100")
]:
values[key] = generate_selectbox(position=tab_general, label=key, key=key)
st.session_state.camera_values = values
#
# tab_video.markdown("# Video")
#
# frame_window = tab_video.image( [] )
# take_picture_button = tab_video.button( 'Take Picture' )
#
# camera.cam_view(location=tab_video)
# log = st.container()
#
# log.write("msg")