嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
人脸识别
.
├── Face-Tracking-usingFairMOT-master
│ ├── LICENSE
│ ├── README.md
│ ├── assets
│ │ └── pipeline.png
│ ├── build
│ │ └── Dockerfile
│ ├── demos
│ │ └── results.txt
│ ├── exp
│ │ └── mot
│ │ └── default
│ │ ├── loss0.01_2020-09-18-15-32
│ │ │ ├── log.txt
│ │ │ └── opt.txt
│ │ ├── loss0.29_2020-09-18-10-56
│ │ │ ├── log.txt
│ │ │ └── opt.txt
│ │ └── opt.txt
│ ├── exp_mobile
│ │ └── mot
│ │ └── default
│ │ ├── model_41epoch.pth
│ │ └── opt.txt
│ ├── experiments
│ │ ├── crowdhuman_dla34.sh
│ │ ├── mix_dla34.sh
│ │ ├── mix_ft_ch_dla34.sh
│ │ ├── mix_mot17_half_dla34.sh
│ │ ├── mix_mot17_half_hrnet18.sh
│ │ ├── mix_mot17_half_res34.sh
│ │ ├── mix_mot17_half_res34fpn.sh
│ │ ├── mix_mot17_half_res50.sh
│ │ ├── mot15_ft_mix_dla34.sh
│ │ ├── mot17_dla34.sh
│ │ ├── mot17_half_dla34.sh
│ │ └── mot20_ft_mix_dla34.sh
│ ├── requirements.txt
│ ├── result
│ │ ├── ffmpeg_video.py
│ │ └── results.txt
│ └── src
│ ├── __pycache__
│ │ ├── _init_paths.cpython-36.pyc
│ │ └── track.cpython-36.pyc
│ ├── _init_paths.py
│ ├── data
│ │ ├── caltech.10k.val
│ │ ├── caltech.all
│ │ ├── caltech.train
│ │ ├── caltech.val
│ │ ├── casia.train
│ │ ├── citypersons.train
│ │ ├── citypersons.val
│ │ ├── crowdhuman.train
│ │ ├── crowdhuman.val
│ │ ├── cuhksysu.train
│ │ ├── cuhksysu.val
│ │ ├── eth.train
│ │ ├── mot15.train
│ │ ├── mot16.train
│ │ ├── mot17.emb
│ │ ├── mot17.half
│ │ ├── mot17.train
│ │ ├── mot17.val
│ │ ├── mot20.train
│ │ ├── prw.train
│ │ └── prw.val
│ ├── demo.py
│ ├── gen_data_path.py
│ ├── gen_labels_15.py
│ ├── gen_labels_16.py
│ ├── gen_labels_20.py
│ ├── gen_labels_crowd.py
│ ├── lib
│ │ ├── __pycache__
│ │ │ ├── logger.cpython-36.pyc
│ │ │ └── opts.cpython-36.pyc
│ │ ├── cfg
│ │ │ ├── crowdhuman.json
│ │ │ ├── data.json
│ │ │ ├── data_half.json
│ │ │ ├── mot15.json
│ │ │ ├── mot16.json
│ │ │ ├── mot17.json
│ │ │ ├── mot17_half.json
│ │ │ └── mot20.json
│ │ ├── datasets
│ │ │ ├── __pycache__
│ │ │ │ └── dataset_factory.cpython-36.pyc
│ │ │ ├── dataset
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── jde.cpython-36.pyc
│ │ │ │ │ └── jde.cpython-37.pyc
│ │ │ │ └── jde.py
│ │ │ └── dataset_factory.py
│ │ ├── logger.py
│ │ ├── models
│ │ │ ├── __pycache__
│ │ │ │ ├── data_parallel.cpython-36.pyc
│ │ │ │ ├── decode.cpython-36.pyc
│ │ │ │ ├── losses.cpython-36.pyc
│ │ │ │ ├── model.cpython-36.pyc
│ │ │ │ ├── scatter_gather.cpython-36.pyc
│ │ │ │ └── utils.cpython-36.pyc
│ │ │ ├── data_parallel.py
│ │ │ ├── decode.py
│ │ │ ├── losses.py
│ │ │ ├── model.py
│ │ │ ├── networks
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── dlav0.cpython-36.pyc
│ │ │ │ │ ├── dlav0.cpython-37.pyc
│ │ │ │ │ ├── mobilenetv2.cpython-36.pyc
│ │ │ │ │ ├── pose_dla_conv.cpython-36.pyc
│ │ │ │ │ ├── pose_dla_conv.cpython-37.pyc
│ │ │ │ │ ├── pose_dla_dcn.cpython-36.pyc
│ │ │ │ │ ├── pose_dla_dcn.cpython-37.pyc
│ │ │ │ │ ├── pose_hrnet.cpython-36.pyc
│ │ │ │ │ ├── pose_hrnet.cpython-37.pyc
│ │ │ │ │ ├── resnet_dcn.cpython-36.pyc
│ │ │ │ │ ├── resnet_dcn.cpython-37.pyc
│ │ │ │ │ ├── resnet_fpn_dcn.cpython-36.pyc
│ │ │ │ │ └── resnet_fpn_dcn.cpython-37.pyc
│ │ │ │ ├── config
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ ├── default.cpython-36.pyc
│ │ │ │ │ │ └── default.cpython-37.pyc
│ │ │ │ │ ├── default.py
│ │ │ │ │ ├── hrnet_w18.yaml
│ │ │ │ │ └── hrnet_w32.yaml
│ │ │ │ ├── dlav0.py
│ │ │ │ ├── mobilenetv2.py
│ │ │ │ ├── pose_dla_conv.py
│ │ │ │ ├── pose_dla_dcn.py
│ │ │ │ ├── pose_hrnet.py
│ │ │ │ ├── resnet_dcn.py
│ │ │ │ └── resnet_fpn_dcn.py
│ │ │ ├── scatter_gather.py
│ │ │ └── utils.py
│ │ ├── opts.py
│ │ ├── tracker
│ │ │ ├── __pycache__
│ │ │ │ ├── basetrack.cpython-36.pyc
│ │ │ │ ├── matching.cpython-36.pyc
│ │ │ │ └── multitracker.cpython-36.pyc
│ │ │ ├── basetrack.py
│ │ │ ├── matching.py
│ │ │ └── multitracker.py
│ │ ├── tracking_utils
│ │ │ ├── __pycache__
│ │ │ │ ├── evaluation.cpython-36.pyc
│ │ │ │ ├── io.cpython-36.pyc
│ │ │ │ ├── kalman_filter.cpython-36.pyc
│ │ │ │ ├── log.cpython-36.pyc
│ │ │ │ ├── timer.cpython-36.pyc
│ │ │ │ ├── utils.cpython-36.pyc
│ │ │ │ └── visualization.cpython-36.pyc
│ │ │ ├── evaluation.py
│ │ │ ├── io.py
│ │ │ ├── kalman_filter.py
│ │ │ ├── log.py
│ │ │ ├── nms.py
│ │ │ ├── parse_config.py
│ │ │ ├── timer.py
│ │ │ ├── utils.py
│ │ │ └── visualization.py
│ │ ├── trains
│ │ │ ├── __pycache__
│ │ │ │ ├── base_trainer.cpython-36.pyc
│ │ │ │ ├── mot.cpython-36.pyc
│ │ │ │ └── train_factory.cpython-36.pyc
│ │ │ ├── base_trainer.py
│ │ │ ├── mot.py
│ │ │ └── train_factory.py
│ │ └── utils
│ │ ├── __pycache__
│ │ │ ├── image.cpython-36.pyc
│ │ │ ├── post_process.cpython-36.pyc
│ │ │ └── utils.cpython-36.pyc
│ │ ├── image.py
│ │ ├── post_process.py
│ │ └── utils.py
│ ├── test_det.py
│ ├── test_emb.py
│ ├── track.py
│ ├── track_half.py
│ └── train.py
└── 好例子网_Face-Tracking-usingFairMOT-master.zip
38 directories, 154 files