質問編集履歴
1
やったことの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -167,3 +167,51 @@
|
|
167
167
|
|
168
168
|
|
169
169
|
```
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
### 試したこと
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
```
|
178
|
+
|
179
|
+
while True:
|
180
|
+
|
181
|
+
frame_count += 1
|
182
|
+
|
183
|
+
print(frame_count)
|
184
|
+
|
185
|
+
camera.capture(stream, 'bgr', use_video_port=True)
|
186
|
+
|
187
|
+
frame = stream.array
|
188
|
+
|
189
|
+
print('text')
|
190
|
+
|
191
|
+
cv2.putText(frame, str(frame_count), (10, 50), cv2.FONT_HERSHEY_PLAIN, 3, (255, 255, 255), 3, cv2.LINE_AA)
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
```
|
196
|
+
|
197
|
+
のようにprint分を入れてデバグしたところ、
|
198
|
+
|
199
|
+
```return
|
200
|
+
|
201
|
+
1
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
以下エラー文
|
206
|
+
|
207
|
+
```
|
208
|
+
|
209
|
+
と返ってきたので、camera.capture(stream, 'bgr', use_video_port=True)がうまくいっていないのかと思います。
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
### 補足情報(FW/ツールのバージョンなど)
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
ここにより詳細な情報を記載してください。
|