-
Notifications
You must be signed in to change notification settings - Fork 12
/
atomcam.py
executable file
·717 lines (587 loc) · 23.8 KB
/
atomcam.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
#!/usr/bin/env python
from pathlib import Path
import sys
import os
from datetime import datetime, timedelta, timezone
import time
import argparse
import numpy as np
import cv2
from imutils.video import FileVideoStream
import telnetlib
try:
import apafy as pafy
except Exception:
# pafyを使う場合はpacheが必要。
import pafy
# マルチスレッド関係
import threading
import queue
import traceback
# 行毎に標準出力のバッファをflushする。
sys.stdout.reconfigure(line_buffering=True)
# 自分の環境のATOM CamのIPに修正してください。
ATOM_CAM_IP = os.environ.get("ATOM_CAM_IP", "192.168.2.110")
ATOM_CAM_RTSP = "rtsp://{}:8554/unicast".format(ATOM_CAM_IP)
# atomcam_toolsでのデフォルトのユーザアカウントなので、自分の環境に合わせて変更してください。
ATOM_CAM_USER = "root"
ATOM_CAM_PASS = "atomcam2"
# YouTube ライブ配信ソース (変更になった場合は要修正)
YouTube = {
"SDRS6JQulmI": "Kiso",
"_8rp1p_tWlc": "Subaru",
"ylSiGa_U1UE": "Fukushima",
"any_youtube": "YouTube"
}
class AtomTelnet():
'''
ATOM Camにtelnet接続し、コマンドを実行するクラス
'''
def __init__(self, ip_address=ATOM_CAM_IP):
"""AtomTelnetのコンストラクタ
Args:
ip_address: Telnet接続先のIPアドレス
"""
self.tn = telnetlib.Telnet(ip_address)
self.tn.read_until(b"login: ")
self.tn.write(ATOM_CAM_USER.encode('ascii') + b"\n")
self.tn.read_until(b"Password: ")
self.tn.write(ATOM_CAM_PASS.encode('ascii') + b"\n")
self.tn.read_until(b"# ")
def exec(self, command):
"""Telnet経由でコマンドを実行する。
Args:
command : 実行するコマンド(ex. "ls")
Returns:
コマンド実行結果文字列。1行のみ。
"""
self.tn.write(command.encode('utf-8') + b'\n')
ret = self.tn.read_until(b"# ").decode('utf-8').split("\r\n")[1]
return ret
def exit(self):
self.tn.write("exit".encode('utf-8') + b"\n")
def __del__(self):
self.exit()
def check_clock():
"""ATOM Camのクロックとホスト側のクロックの比較。
"""
tn = AtomTelnet()
atom_date = tn.exec('date')
'''
utc_now = datetime.now(timezone.utc)
atom_now = datetime.strptime(atom_date, "%a %b %d %H:%M:%S %Z %Y")
atom_now = atom_now.replace(tzinfo=timezone.utc)
'''
jst_now = datetime.now()
atom_now = datetime.strptime(atom_date, "%a %b %d %H:%M:%S %Z %Y")
dt = atom_now - jst_now
if dt.days < 0:
delta = -(86400.0 - (dt.seconds + dt.microseconds/1e6))
else:
delta = dt.seconds + dt.microseconds/1e6
print("# ATOM Cam =", atom_now)
print("# HOST PC =", jst_now)
print("# ATOM Cam - Host PC = {:.3f} sec".format(delta))
def set_clock():
"""ATOM Camのクロックとホスト側のクロックに合わせる。
"""
tn = AtomTelnet()
# utc_now = datetime.now(timezone.utc)
jst_now = datetime.now()
set_command = 'date -s "{}"'.format(jst_now.strftime("%Y-%m-%d %H:%M:%S"))
print(set_command)
tn.exec(set_command)
def composite(list_images):
"""画像リストの合成(単純スタッキング)
Args:
list_images: 画像データのリスト
Returns:
合成された画像
"""
equal_fraction = 1.0 / (len(list_images))
output = np.zeros_like(list_images[0])
for img in list_images:
output = output + img * equal_fraction
output = output.astype(np.uint8)
return output
def median(list_images, opencl=False):
img_list = []
if opencl:
for img in list_images:
img_list.append(cv2.UMat.get(img))
else:
for img in list_images:
img_list.append(img)
return np.median(img_list, axis=0).astype(np.uint8)
def average(list_images, opencl=False):
img_list = []
if opencl:
for img in list_images:
img_list.append(cv2.UMat.get(img))
else:
for img in list_images:
img_list.append(img)
return np.average(img_list, axis=0).astype(np.uint8)
def brightest(img_list):
"""比較明合成処理
Args:
img_list: 画像データのリスト
Returns:
比較明合成された画像
"""
output = img_list[0]
for img in img_list[1:]:
output = cv2.max(img, output)
return output
def diff(img_list, mask):
"""画像リストから差分画像のリストを作成する。
Args:
img_list: 画像データのリスト
mask: マスク画像(2値画像)
Returns:
差分画像のリスト
"""
diff_list = []
for img1, img2 in zip(img_list[:-2], img_list[1:]):
if mask is not None:
img1 = cv2.bitwise_or(img1, mask)
img2 = cv2.bitwise_or(img2, mask)
diff_list.append(cv2.subtract(img1, img2))
return diff_list
def detect(img, min_length):
"""画像上の線状のパターンを流星として検出する。
Args:
img: 検出対象となる画像
min_length: HoughLinesPで検出する最短長(ピクセル)
Returns:
検出結果
"""
blur_size = (5, 5)
blur = cv2.GaussianBlur(img, blur_size, 0)
canny = cv2.Canny(blur, 100, 200, 3)
# The Hough-transform algo:
return cv2.HoughLinesP(canny, 1, np.pi/180, 25, minLineLength=min_length, maxLineGap=5)
class AtomCam:
def __init__(self, video_url=ATOM_CAM_RTSP, output=None, end_time="0600",
clock=False, mask=None, minLineLength=30, opencl=False):
self._running = False
# video device url or movie file path
self.capture = None
self.source = None
self.opencl = opencl
# 入力ソースの判定
if "youtube" in video_url:
# YouTube(マウナケア、木曽、福島、etc)
self.source = "YouTube"
for source in YouTube.keys():
if source in video_url:
self.source = YouTube[source]
else:
self.source = "ATOMCam"
self.url = video_url
self.connect()
# opencv-python 4.6.0.66 のバグで大きな値(9000)が返ることがあるので対策。
self.FPS = min(int(self.capture.get(cv2.CAP_PROP_FPS)), 60)
self.HEIGHT = int(self.capture.get(cv2.CAP_PROP_FRAME_HEIGHT))
self.WIDTH = int(self.capture.get(cv2.CAP_PROP_FRAME_WIDTH))
# 出力先ディレクトリ
if output:
output_dir = Path(output)
output_dir.mkdir(exist_ok=True)
else:
output_dir = Path('.')
self.output_dir = output_dir
# MP4ファイル再生の場合を区別する。
self.mp4 = Path(video_url).suffix == '.mp4'
# 終了時刻を設定する。
now = datetime.now()
t = datetime.strptime(end_time, "%H%M")
self.end_time = datetime(
now.year, now.month, now.day, t.hour, t.minute)
if now > self.end_time:
self.end_time = self.end_time + timedelta(hours=24)
print("# scheduled end_time = ", self.end_time)
self.now = now
if self.source == "ATOMCam" and clock:
# 内蔵時計のチェック
check_clock()
if mask:
# マスク画像指定の場合
self.mask = cv2.imread(mask)
else:
# 時刻表示部分のマスクを作成
if self.opencl:
zero = cv2.UMat((1080, 1920), cv2.CV_8UC3)
else:
zero = np.zeros((1080, 1920, 3), np.uint8)
if self.source == "Subaru":
# mask SUBRU/Mauna-Kea timestamp
self.mask = cv2.rectangle(
zero, (1660, 980), (1920, 1080), (255, 255, 255), -1)
elif self.source == "YouTube":
# no mask
self.mask = None
else:
# mask ATOM Cam timestamp
self.mask = cv2.rectangle(
zero, (1390, 1010), (1920, 1080), (255, 255, 255), -1)
self.min_length = minLineLength
self.image_queue = queue.Queue(maxsize=200)
def __del__(self):
now = datetime.now()
obs_time = "{:04}/{:02}/{:02} {:02}:{:02}:{:02}".format(
now.year, now.month, now.day, now.hour, now.minute, now.second
)
print("# {} stop".format(obs_time))
if self.capture:
self.capture.release()
cv2.destroyAllWindows()
def connect(self):
if self.capture:
self.capture.release()
if self.source in YouTube.values():
# YouTubeからのストリーミング入力
video = pafy.new(self.url)
best = video.getbest(preftype="mp4")
url = best.url
else:
url = self.url
self.capture = cv2.VideoCapture(url)
def stop(self):
# thread を止める
self._running = False
def queue_streaming(self):
"""RTSP読み込みをthreadで行い、queueにデータを流し込む。
"""
print("# threading version started.")
frame_count = int(self.capture.get(cv2.CAP_PROP_FRAME_COUNT))
self._running = True
while(True):
try:
ret, frame = self.capture.read()
if self.opencl:
frame = cv2.UMat(frame)
if ret:
# self.image_queue.put_nowait(frame)
now = datetime.now()
self.image_queue.put((now, frame))
if self.mp4:
current_pos = int(self.capture.get(
cv2.CAP_PROP_POS_FRAMES))
if current_pos >= frame_count:
break
else:
self.connect()
time.sleep(5)
continue
if self._running is False:
break
except Exception as e:
print(type(e), file=sys.stderr)
print(e, file=sys.stderr)
continue
def dequeue_streaming(self, exposure=1, no_window=False):
"""queueからデータを読み出し流星検知、描画を行う。
"""
num_frames = int(self.FPS * exposure)
while True:
img_list = []
for n in range(num_frames):
(t, frame) = self.image_queue.get()
key = chr(cv2.waitKey(1) & 0xFF)
if key == 'q':
self._running = False
return
if self.mp4 and self.image_queue.empty():
self._running = False
return
# exposure time を超えたら終了
if len(img_list) == 0:
t0 = t
img_list.append(frame)
else:
dt = t - t0
if dt.seconds < exposure:
img_list.append(frame)
else:
break
if len(img_list) > 2:
self.composite_img = brightest(img_list)
if not no_window:
cv2.imshow('{}'.format(self.source), self.composite_img)
self.detect_meteor(img_list)
# ストリーミングの場合、終了時刻を過ぎたなら終了。
now = datetime.now()
if not self.mp4 and now > self.end_time:
print("# end of observation at ", now)
self._running = False
return
def detect_meteor(self, img_list):
"""img_listで与えられた画像のリストから流星(移動天体)を検出する。
"""
now = datetime.now()
obs_time = "{:04}/{:02}/{:02} {:02}:{:02}:{:02}".format(
now.year, now.month, now.day, now.hour, now.minute, now.second)
if len(img_list) > 2:
# 差分間で比較明合成を取るために最低3フレームが必要。
# 画像のコンポジット(単純スタック)
diff_img = brightest(diff(img_list, self.mask))
try:
# if True:
if now.hour != self.now.hour:
# 毎時空の様子を記録する。
filename = "sky-{:04}{:02}{:02}{:02}{:02}{:02}".format(
now.year, now.month, now.day, now.hour, now.minute, now.second)
path_name = str(Path(self.output_dir, filename + ".jpg"))
mean_img = average(img_list, self.opencl)
# cv2.imwrite(path_name, self.composite_img)
cv2.imwrite(path_name, mean_img)
self.now = now
detected = detect(diff_img, self.min_length)
if detected is not None:
'''
for meteor_candidate in detected:
print('{} {} A possible meteor was detected.'.format(obs_time, meteor_candidate))
'''
print('{} A possible meteor was detected.'.format(obs_time))
filename = "{:04}{:02}{:02}{:02}{:02}{:02}".format(
now.year, now.month, now.day, now.hour, now.minute, now.second)
path_name = str(Path(self.output_dir, filename + ".jpg"))
cv2.imwrite(path_name, self.composite_img)
# 検出した動画を保存する。
movie_file = str(
Path(self.output_dir, "movie-" + filename + ".mp4"))
self.save_movie(img_list, movie_file)
except Exception as e:
print(traceback.format_exc())
# print(e, file=sys.stderr)
def save_movie(self, img_list, pathname):
"""
画像リストから動画を作成する。
Args:
imt_list: 画像のリスト
pathname: 出力ファイル名
"""
size = (self.WIDTH, self.HEIGHT)
fourcc = cv2.VideoWriter_fourcc('m', 'p', '4', 'v')
video = cv2.VideoWriter(pathname, fourcc, self.FPS, size)
for img in img_list:
video.write(img)
video.release()
class DetectMeteor():
"""
ATOMCam 動画ファイル(MP4)からの流星の検出
親クラスから継承したものにしたい。
"""
def __init__(self, file_path, mask=None, minLineLength=30, opencl=False):
# video device url or movie file path
self.capture = FileVideoStream(file_path).start()
self.HEIGHT = int(self.capture.stream.get(cv2.CAP_PROP_FRAME_HEIGHT))
self.WIDTH = int(self.capture.stream.get(cv2.CAP_PROP_FRAME_WIDTH))
self.FPS = self.capture.stream.get(cv2.CAP_PROP_FPS)
self.source = None
self.opencl = opencl
if self.FPS < 1.0:
# 正しく入っていない場合があるので、その場合は15固定にする(ATOM Cam限定)。
self.FPS = 15
# file_pathから日付、時刻を取得する。
# date_element = file_path.split('/')
date_element = file_path.split(os.sep)
self.date_dir = date_element[-3]
self.date = datetime.strptime(self.date_dir, "%Y%m%d")
self.hour = date_element[-2]
self.minute = date_element[-1].split('.')[0]
self.obs_time = "{}/{:02}/{:02} {}:{}".format(
self.date.year, self.date.month, self.date.day, self.hour, self.minute)
if mask:
# マスク画像指定の場合
self.mask = cv2.imread(mask)
else:
# 時刻表示部分のマスクを作成
if opencl:
zero = cv2.UMat((1080, 1920), cv2.CV_8UC3)
else:
zero = np.zeros((1080, 1920, 3), np.uint8)
if self.source == "Subaru":
# mask SUBRU/Mauna-Kea timestamp
self.mask = cv2.rectangle(
zero, (1660, 980), (1920, 1080), (255, 255, 255), -1)
else:
# mask ATOM Cam timestamp
self.mask = cv2.rectangle(
zero, (1390, 1010), (1920, 1080), (255, 255, 255), -1)
self.min_length = minLineLength
def save_movie(self, img_list, pathname):
"""
画像リストから動画を作成する。
Args:
imt_list: 画像のリスト
pathname: 出力ファイル名
"""
size = (self.WIDTH, self.HEIGHT)
fourcc = cv2.VideoWriter_fourcc('m', 'p', '4', 'v')
video = cv2.VideoWriter(pathname, fourcc, self.FPS, size)
for img in img_list:
video.write(img)
video.release()
def meteor(self, exposure=1, output=None):
"""流星の検出
"""
if output:
output_dir = Path(output)
output_dir.mkdir(exist_ok=True)
else:
output_dir = Path('.')
num_frames = int(self.FPS * exposure)
composite_img = None
count = 0
while self.capture.more():
img_list = []
for n in range(num_frames):
try:
if self.capture.more():
frame = self.capture.read()
if self.opencl:
frame = cv2.UMat(frame)
else:
continue
except Exception as e:
print(e, file=sys.stderr)
continue
img_list.append(frame)
# 画像のコンポジット
number = len(img_list)
count += 1
# print(number, num_frames)
if number > 2:
try:
diff_img = brightest(diff(img_list, self.mask))
if detect(diff_img, self.min_length) is not None:
obs_time = "{}:{}".format(
self.obs_time, str(count*exposure).zfill(2))
print('{} A possible meteor was detected.'.format(obs_time))
filename = self.date_dir + self.hour + \
self.minute + str(count*exposure).zfill(2)
path_name = str(Path(output_dir, filename + ".jpg"))
# cv2.imwrite(filename + ".jpg", diff_img)
composite_img = brightest(img_list)
cv2.imwrite(path_name, composite_img)
# 検出した動画を保存する。
movie_file = str(
Path(output_dir, "movie-" + filename + ".mp4"))
self.save_movie(img_list, movie_file)
except Exception as e:
# print(traceback.format_exc(), file=sys.stderr)
print(e, file=sys.stderr)
def detect_meteor(args):
"""
ATOM Cam形式の動画ファイルからの流星の検出
"""
if args.input:
# 入力ファイルのディレクトリの指定がある場合
input_dir = Path(args.input)
else:
input_dir = Path('.')
data_dir = Path(input_dir, args.date)
if args.hour:
# 時刻(hour)の指定がある場合
data_dir = Path(data_dir, args.hour)
if args.minute:
# 1分間のファイル単体の処理
file_path = Path(data_dir, "{}.mp4".format(args.minute))
print("# {}".format(data_dir))
if args.minute:
# 1分間の単体のmp4ファイルの処理
print("#", file_path)
detecter = DetectMeteor(
str(file_path), mask=args.mask, minLineLength=args.min_length)
detecter.meteor(args.exposure, args.output)
else:
# 1時間内の一括処理
for file_path in sorted(Path(data_dir).glob("[0-9][0-9].mp4")):
print('#', Path(file_path))
detecter = DetectMeteor(str(file_path), args.mask)
detecter.meteor(args.exposure, args.output)
def streaming_thread(args):
"""
RTSPストリーミング、及び動画ファイルからの流星の検出(スレッド版)
"""
if args.url:
# URL指定の場合。
url = args.url
else:
# defaultはATOMCamのURL(atomcam_tools版)とする。
if args.atomcam_tools:
# atomcam_toolsのRTSPを使う場合。
url = f"rtsp://{ATOM_CAM_IP}:8554/unicast"
else:
# メーカ公式のRTSPを使う場合
url = f"rtsp://6199:4003@{ATOM_CAM_IP}/live"
# print(url)
atom = AtomCam(url, args.output, args.to, args.clock,
args.mask, args.min_length)
if not atom.capture.isOpened():
return
now = datetime.now()
obs_time = "{:04}/{:02}/{:02} {:02}:{:02}:{:02}".format(
now.year, now.month, now.day, now.hour, now.minute, now.second
)
print("# {} start".format(obs_time))
# スレッド版の流星検出
t_in = threading.Thread(target=atom.queue_streaming)
t_in.start()
try:
atom.dequeue_streaming(args.exposure, args.no_window)
except KeyboardInterrupt:
atom.stop()
t_in.join()
return
if __name__ == '__main__':
parser = argparse.ArgumentParser(add_help=False)
# ストリーミングモードのオプション
parser.add_argument('-u', '--url', default=None,
help='RTSPのURL、または動画(MP4)ファイル')
parser.add_argument('-n', '--no_window', action='store_true', help='画面非表示')
# 以下はATOM Cam形式のディレクトリからデータを読む場合のオプション
parser.add_argument('-d', '--date', default=None,
help="Date in 'yyyymmdd' format (JST)")
parser.add_argument('-h', '--hour', default=None,
help="Hour in 'hh' format (JST)")
parser.add_argument('-m', '--minute', default=None,
help="minute in mm (optional)")
parser.add_argument('-i', '--input', default=None, help='検出対象のTOPディレクトリ名')
# 共通オプション
parser.add_argument('-e', '--exposure', type=int,
default=1, help='露出時間(second)')
parser.add_argument('-o', '--output', default=None, help='検出画像の出力先ディレクトリ名')
parser.add_argument('-t', '--to', default="0600",
help='終了時刻(JST) "hhmm" 形式(ex. 0600)')
parser.add_argument('--mask', default=None, help="mask image")
parser.add_argument('--min_length', type=int, default=30,
help="minLineLength of HoghLinesP")
parser.add_argument('--opencl',
action='store_true', help="Use OpenCL (default: False)")
# ffmpeg関係の警告がウザいので抑制する。
parser.add_argument('-s', '--suppress-warning',
action='store_true', help='suppress warning messages')
# threadモード(default)
parser.add_argument('--thread', default=True,
action='store_true', help='スレッド版(default)')
parser.add_argument('--help', action='help',
help='show this help message and exit')
# 以下のオプションはatomcam_toolsを必要とする。
parser.add_argument(
'--atomcam_tools', action='store_true', help='atomcam_toolsを使う場合に指定する。')
parser.add_argument(
'-c', '--clock', action='store_true', help='カメラの時刻チェック(atomcam_tools必要)')
args = parser.parse_args()
if args.suppress_warning:
# stderrを dev/null に出力する。
fd = os.open(os.devnull, os.O_WRONLY)
os.dup2(fd, 2)
if args.date:
# 日付がある場合はファイル(ATOMCam形式のファイル)から流星検出
detect_meteor(args)
else:
# ストリーミング/動画(MP4)の再生、流星検出
streaming_thread(args)