├── .gitignore ├── LICENSE ├── README.md ├── paper ├── README_Latex.txt ├── avss.sty ├── avss_eso.sty ├── egbib.bib ├── egpaper_for_DoubleBlindReview.tex ├── eso-pic.sty ├── fig │ ├── fig1.png │ ├── fig2.png │ └── fig3.png ├── ieee.bst └── ref │ ├── ieee模板的引用 │ └── 顺序排序的引用 └── src ├── Demo ├── README.md ├── backend.py ├── demo.py ├── model.py ├── utils.py ├── videoloader.py └── weights.pth ├── VioDB ├── annotation.ipynb ├── annotation_jpg_train_test.py ├── annotation_kfold.ipynb ├── hockey_jpg1.json ├── hockey_jpg2.json ├── hockey_jpg3.json ├── hockey_jpg4.json ├── hockey_jpg5.json ├── mix_jpg.json ├── movie_jpg1.json ├── movie_jpg2.json ├── movie_jpg3.json ├── movie_jpg4.json ├── movie_jpg5.json ├── vif_jpg1.json ├── vif_jpg2.json ├── vif_jpg3.json ├── vif_jpg4.json └── vif_jpg5.json └── VioNet ├── .gitignore ├── README.md ├── bench.ipynb ├── calc_flops.ipynb ├── config.py ├── dataset.py ├── epoch.py ├── main.py ├── model.py ├── models ├── c3d.py ├── convlstm.py └── densenet.py ├── spatial_transforms.py ├── target_transforms.py ├── temporal_transforms.py ├── torchsummary.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/README.md -------------------------------------------------------------------------------- /paper/README_Latex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/README_Latex.txt -------------------------------------------------------------------------------- /paper/avss.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/avss.sty -------------------------------------------------------------------------------- /paper/avss_eso.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/avss_eso.sty -------------------------------------------------------------------------------- /paper/egbib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/egbib.bib -------------------------------------------------------------------------------- /paper/egpaper_for_DoubleBlindReview.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/egpaper_for_DoubleBlindReview.tex -------------------------------------------------------------------------------- /paper/eso-pic.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/eso-pic.sty -------------------------------------------------------------------------------- /paper/fig/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/fig/fig1.png -------------------------------------------------------------------------------- /paper/fig/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/fig/fig2.png -------------------------------------------------------------------------------- /paper/fig/fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/fig/fig3.png -------------------------------------------------------------------------------- /paper/ieee.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/ieee.bst -------------------------------------------------------------------------------- /paper/ref/ieee模板的引用: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/ref/ieee模板的引用 -------------------------------------------------------------------------------- /paper/ref/顺序排序的引用: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/paper/ref/顺序排序的引用 -------------------------------------------------------------------------------- /src/Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/Demo/README.md -------------------------------------------------------------------------------- /src/Demo/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/Demo/backend.py -------------------------------------------------------------------------------- /src/Demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/Demo/demo.py -------------------------------------------------------------------------------- /src/Demo/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/Demo/model.py -------------------------------------------------------------------------------- /src/Demo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/Demo/utils.py -------------------------------------------------------------------------------- /src/Demo/videoloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/Demo/videoloader.py -------------------------------------------------------------------------------- /src/Demo/weights.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/Demo/weights.pth -------------------------------------------------------------------------------- /src/VioDB/annotation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/annotation.ipynb -------------------------------------------------------------------------------- /src/VioDB/annotation_jpg_train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/annotation_jpg_train_test.py -------------------------------------------------------------------------------- /src/VioDB/annotation_kfold.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/annotation_kfold.ipynb -------------------------------------------------------------------------------- /src/VioDB/hockey_jpg1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/hockey_jpg1.json -------------------------------------------------------------------------------- /src/VioDB/hockey_jpg2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/hockey_jpg2.json -------------------------------------------------------------------------------- /src/VioDB/hockey_jpg3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/hockey_jpg3.json -------------------------------------------------------------------------------- /src/VioDB/hockey_jpg4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/hockey_jpg4.json -------------------------------------------------------------------------------- /src/VioDB/hockey_jpg5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/hockey_jpg5.json -------------------------------------------------------------------------------- /src/VioDB/mix_jpg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/mix_jpg.json -------------------------------------------------------------------------------- /src/VioDB/movie_jpg1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/movie_jpg1.json -------------------------------------------------------------------------------- /src/VioDB/movie_jpg2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/movie_jpg2.json -------------------------------------------------------------------------------- /src/VioDB/movie_jpg3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/movie_jpg3.json -------------------------------------------------------------------------------- /src/VioDB/movie_jpg4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/movie_jpg4.json -------------------------------------------------------------------------------- /src/VioDB/movie_jpg5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/movie_jpg5.json -------------------------------------------------------------------------------- /src/VioDB/vif_jpg1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/vif_jpg1.json -------------------------------------------------------------------------------- /src/VioDB/vif_jpg2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/vif_jpg2.json -------------------------------------------------------------------------------- /src/VioDB/vif_jpg3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/vif_jpg3.json -------------------------------------------------------------------------------- /src/VioDB/vif_jpg4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/vif_jpg4.json -------------------------------------------------------------------------------- /src/VioDB/vif_jpg5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioDB/vif_jpg5.json -------------------------------------------------------------------------------- /src/VioNet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/.gitignore -------------------------------------------------------------------------------- /src/VioNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/README.md -------------------------------------------------------------------------------- /src/VioNet/bench.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/bench.ipynb -------------------------------------------------------------------------------- /src/VioNet/calc_flops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/calc_flops.ipynb -------------------------------------------------------------------------------- /src/VioNet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/config.py -------------------------------------------------------------------------------- /src/VioNet/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/dataset.py -------------------------------------------------------------------------------- /src/VioNet/epoch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/epoch.py -------------------------------------------------------------------------------- /src/VioNet/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/main.py -------------------------------------------------------------------------------- /src/VioNet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/model.py -------------------------------------------------------------------------------- /src/VioNet/models/c3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/models/c3d.py -------------------------------------------------------------------------------- /src/VioNet/models/convlstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/models/convlstm.py -------------------------------------------------------------------------------- /src/VioNet/models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/models/densenet.py -------------------------------------------------------------------------------- /src/VioNet/spatial_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/spatial_transforms.py -------------------------------------------------------------------------------- /src/VioNet/target_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/target_transforms.py -------------------------------------------------------------------------------- /src/VioNet/temporal_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/temporal_transforms.py -------------------------------------------------------------------------------- /src/VioNet/torchsummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/torchsummary.py -------------------------------------------------------------------------------- /src/VioNet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimLee1996/AVSS2019/HEAD/src/VioNet/utils.py --------------------------------------------------------------------------------