This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| リアルタイム人流カウントシステム(RTSPカメラ版) | |
| RTSPカメラから映像を取得し、カウントラインを横切ったイベントをCSV出力する | |
| """ | |
| import argparse | |
| import cv2 | |
| import numpy as np | |
| import torch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| リアルタイム人流カウントシステム(ウェブカメラ・プロトタイプ版) | |
| ラップトップのウェブカメラから映像を取得し、カウントラインを横切ったイベントをCSV出力する | |
| """ | |
| import argparse | |
| import cv2 | |
| import numpy as np | |
| import torch |