VideoAnalysisTool
这是一款视频分析处理工具,目前嵌入了Visual Tracking功能,手动勾选视频中第一帧的某个物体,程序自动跟踪该物体在整个视频序列中的位置
Install / Use
/learn @rao1219/VideoAnalysisToolREADME
VideoAnalysisTool
The tracker currently adopted is MDNet. Created by Hyeonseob Nam and Bohyung Han at POSTECH
Project Webpage: http://cvlab.postech.ac.kr/research/mdnet/
Structure
--------> GUI (public):Software UI and I/O of public vars
|
| +-> Tracker (private): Tracking task's codes
|----+-> Stablization (private): Stabilization task's codes
+-> ... : Other sub-task's codes
Public vars
| Variable | Description |
| -------- | -----: |
|handles.file_name | filename of uploaded file |
|handles.imgs |image lists of frames to be processed |
| handles.video_ | video to be processed |
| handles.video_dir | video's full path |
| handles.result | output of algorithm |
| handles.t_p_x | current mouse position x |
| handles.t_p_y | current mouse position y |
Common functions
| Function | Description | | -------- | -----: | |Data Input | Upload dir/video(ui.m: upload_btn's callback) | |Data preprocess |Video2frames (ui.m: VideoReader)| |Video broadcast | Broadcast of a video/img_lists(ui.m: broadcast_btn) | |Selection of random frame| (ui.m: slider's callback)| |Parameter input of algorithm|codes in sub-task | |Algorithm processing| codes in sub-task( online may need visualization)| |Result Visualization |codes in sub-task |
