├── .gitignore ├── README.md ├── doc ├── develop.md ├── dff_understanding.md ├── fgfa_understanding.md ├── flownet_understanding.md └── seq_nms_understanding.md ├── imgs └── .gitignore ├── misc └── mxnet使用问题.md ├── paper └── Optimizing Video Object Detection via a Scale-Time Lattice.pdf ├── test ├── __init__.py ├── context.py └── test_template.py └── video_obj ├── __init__.py ├── dataloader └── __init__.py └── modelloader └── __init__.py /.gitignore: -------------------------------------------------------------------------------- 1 | ppt/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/video_obj/HEAD/README.md -------------------------------------------------------------------------------- /doc/develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/video_obj/HEAD/doc/develop.md -------------------------------------------------------------------------------- /doc/dff_understanding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/video_obj/HEAD/doc/dff_understanding.md -------------------------------------------------------------------------------- /doc/fgfa_understanding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/video_obj/HEAD/doc/fgfa_understanding.md -------------------------------------------------------------------------------- /doc/flownet_understanding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/video_obj/HEAD/doc/flownet_understanding.md -------------------------------------------------------------------------------- /doc/seq_nms_understanding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/video_obj/HEAD/doc/seq_nms_understanding.md -------------------------------------------------------------------------------- /imgs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/mxnet使用问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/video_obj/HEAD/misc/mxnet使用问题.md -------------------------------------------------------------------------------- /paper/Optimizing Video Object Detection via a Scale-Time Lattice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/video_obj/HEAD/paper/Optimizing Video Object Detection via a Scale-Time Lattice.pdf -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /test/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/video_obj/HEAD/test/context.py -------------------------------------------------------------------------------- /test/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/video_obj/HEAD/test/test_template.py -------------------------------------------------------------------------------- /video_obj/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /video_obj/dataloader/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /video_obj/modelloader/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | --------------------------------------------------------------------------------