-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
52 lines (42 loc) · 1.53 KB
/
main.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
import cv2
import sys
from ultralytics import YOLO
def main():
# コマンドライン引数からIPカメラのURLまたはパスを取得
if len(sys.argv) > 1:
camera_source = sys.argv[1]
print(f"IPカメラ: {camera_source} を使用。")
else:
# 引数がない場合はPCのWebカメラを使う
camera_source = 0 # 0はPCのデフォルトカメラ
print("Webカメラを使用。")
# YOLOv8のモデルをロード
model = YOLO('yolov8n.pt')
# カメラの映像を取得
cap = cv2.VideoCapture(camera_source)
if not cap.isOpened():
print(f"カメラに接続できません: {camera_source}")
sys.exit(1)
try:
while True:
ret, frame = cap.read()
if not ret:
print("映像を取得できません。")
break
# YOLOv8で推論を実行 (predict メソッドを使う)
results = model.predict(frame, verbose=False)
# 推論結果をフレームに描画
annotated_frame = results[0].plot()
# ウィンドウにフレームを表示
cv2.imshow('YOLOv8 Camera Detection', annotated_frame)
# ESCキーが押されたら終了
if cv2.waitKey(1) & 0xFF == 27:
break
except Exception as e:
print(f"エラーが発生しました: {e}")
finally:
# リソースの解放
cap.release()
cv2.destroyAllWindows()
if __name__ == "__main__":
main()