在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 多目标跟踪(SORT,Deep_SORT,IOU17,SST)代码

多目标跟踪(SORT,Deep_SORT,IOU17,SST)代码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:124.85M
  • 下载次数:6
  • 浏览次数:143
  • 发布时间:2021-11-13
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.7z
  • 所需积分:2
 

实例介绍

【实例简介】
多目标跟踪(SORT,Deep_SORT,IOU17,SST)代码,亲身测试在MOT17上运行成功,需要准备相应的数据集及标签
【实例截图】
【核心代码】
4744300845217308669.7z
├── deep_sort-master
│   └── deep_sort-master
│   ├── application_util
│   │   ├── image_viewer.py
│   │   ├── __init__.py
│   │   ├── preprocessing.py
│   │   ├── __pycache__
│   │   │   ├── image_viewer.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── preprocessing.cpython-37.pyc
│   │   │   └── visualization.cpython-37.pyc
│   │   └── visualization.py
│   ├── deep_sort
│   │   ├── detection.py
│   │   ├── __init__.py
│   │   ├── iou_matching.py
│   │   ├── kalman_filter.py
│   │   ├── linear_assignment.py
│   │   ├── nn_matching.py
│   │   ├── __pycache__
│   │   │   ├── detection.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── iou_matching.cpython-37.pyc
│   │   │   ├── kalman_filter.cpython-37.pyc
│   │   │   ├── linear_assignment.cpython-37.pyc
│   │   │   ├── nn_matching.cpython-37.pyc
│   │   │   ├── track.cpython-37.pyc
│   │   │   └── tracker.cpython-37.pyc
│   │   ├── tracker.py
│   │   └── track.py
│   ├── deep_sort_app.py
│   ├── evaluate_motchallenge.py
│   ├── generate_videos.py
│   ├── LICENSE
│   ├── README.md
│   ├── res
│   │   ├── MOT17-02.txt
│   │   ├── MOT17-04.txt
│   │   ├── MOT17-05.txt
│   │   ├── MOT17-09.txt
│   │   ├── MOT17-10.txt
│   │   ├── MOT17-11.txt
│   │   └── MOT17-13.txt
│   ├── show_results.py
│   └── tools
│   ├── freeze_model.py
│   └── generate_detections.py
├── iou-tracker-master
│   └── iou-tracker-master
│   ├── demo.py
│   ├── iou_tracker.py
│   ├── LICENSE
│   ├── mot16.py
│   ├── mot17.py
│   ├── __pycache__
│   │   ├── iou_tracker.cpython-37.pyc
│   │   └── util.cpython-37.pyc
│   ├── README.md
│   ├── res
│   │   ├── MOT17-02-SDP.txt
│   │   ├── MOT17-04-SDP.txt
│   │   ├── MOT17-05-SDP.txt
│   │   ├── MOT17-09-SDP.txt
│   │   ├── MOT17-10-SDP.txt
│   │   ├── MOT17-11-SDP.txt
│   │   └── MOT17-13-SDP.txt
│   ├── run_tracker.m
│   ├── saveStateInfo.m
│   ├── seqmaps
│   │   ├── frcnn-all.txt
│   │   ├── frcnn-test.txt
│   │   ├── frcnn-train.txt
│   │   ├── sdp-all.txt
│   │   ├── sdp-test.txt
│   │   └── sdp-train.txt
│   └── util.py
├── sort-master
│   └── sort-master
│   ├── data
│   ├── LICENSE
│   ├── output
│   │   ├── MOT17-02-DPM.txt
│   │   ├── MOT17-02-FRCNN.txt
│   │   ├── MOT17-02-SDP.txt
│   │   ├── MOT17-04-DPM.txt
│   │   ├── MOT17-04-FRCNN.txt
│   │   ├── MOT17-04-SDP.txt
│   │   ├── MOT17-05-DPM.txt
│   │   ├── MOT17-05-FRCNN.txt
│   │   ├── MOT17-05-SDP.txt
│   │   ├── MOT17-09-DPM.txt
│   │   ├── MOT17-09-FRCNN.txt
│   │   ├── MOT17-09-SDP.txt
│   │   ├── MOT17-10-DPM.txt
│   │   ├── MOT17-10-FRCNN.txt
│   │   ├── MOT17-10-SDP.txt
│   │   ├── MOT17-11-DPM.txt
│   │   ├── MOT17-11-FRCNN.txt
│   │   ├── MOT17-11-SDP.txt
│   │   ├── MOT17-13-DPM.txt
│   │   ├── MOT17-13-FRCNN.txt
│   │   └── MOT17-13-SDP.txt
│   ├── README.md
│   ├── requirements.txt
│   └── sort.py
└── SST-master
└── SST-master
├── backup
│   ├── sst_tracker.py
│   └── tracker.py
├── config
│   ├── config_backup.py
│   ├── config.py
│   ├── __pycache__
│   │   └── config.cpython-37.pyc
│   ├── ua_easy
│   ├── ua_experienced_backup.txt
│   ├── ua_experienced.txt
│   ├── ua_hard.txt
│   └── ua_medium.txt
├── create_demo.py
├── data
│   ├── get_mot17.py
│   ├── get_ua.py
│   ├── __init__.py
│   ├── kitti_detection_data_reader.py
│   ├── kitti.py
│   ├── kitti_tracking_data_reader.py
│   ├── mot15_data_reader.py
│   ├── mot15.py
│   ├── mot_data_reader.py
│   ├── mot.py
│   ├── __pycache__
│   │   ├── __init__.cpython-37.pyc
│   │   ├── mot.cpython-37.pyc
│   │   └── mot_data_reader.cpython-37.pyc
│   ├── ua_detection_data_reader.py
│   ├── ua.py
│   └── ua_tracking_data_reader.py
├── image
│   ├── accuracy20180410.png
│   ├── accuracy20180416.png
│   ├── accuracy20180419.png
│   ├── accuracy20180420.png
│   ├── coolexample10.png
│   ├── coolexample11.png
│   ├── coolexample12.png
│   ├── coolexample13.png
│   ├── coolexample1.png
│   ├── coolexample2.png
│   ├── coolexample3.png
│   ├── coolexample4.png
│   ├── coolexample5.png
│   ├── coolexample6.png
│   ├── coolexample7.png
│   ├── coolexample8.png
│   ├── coolexample9.png
│   ├── framework.png
│   ├── hardwhen30framegap.png
│   ├── historgram-problem.png
│   ├── mot_tracking_demo.png
│   ├── network.png
│   ├── problem1.png
│   ├── problem2.png
│   ├── training20180410.png
│   ├── training20180416.png
│   ├── training20180419.png
│   └── training20180420.png
├── layer
│   ├── __pycache__
│   │   ├── sst.cpython-37.pyc
│   │   └── sst_loss.cpython-37.pyc
│   ├── sst_loss.py
│   └── sst.py
├── log
│   └── 0_0_4_0_3_3
├── __pycache__
│   └── tracker.cpython-37.pyc
├── README.md
├── requirement.txt
├── result
├── sst_tracker.py
├── test_kitti.py
├── test_mot15.py
├── test_mot16.py
├── test_mot17.py
├── test_ua.py
├── tools
│   ├── check_ua_result.py
│   ├── comm_split_frames_from_video.py
│   ├── compare_tools.py
│   ├── convert_mat_2_ua.py
│   ├── convert_mot_result_2_ua_result.py
│   ├── extract_ua_result.py
│   ├── kitti_detection_player.py
│   ├── kitti_track_player.py
│   ├── mot15_extract_detection.py
│   ├── mot17_summary.py
│   ├── mot_generate_matching_result.py
│   ├── ua_check_frame_number.py
│   ├── ua_detection_player.py
│   ├── ua_eb_copy.py
│   ├── ua_generate_det_from_track.py
│   ├── ua_generate_matching_result.py
│   ├── ua_remove_ignr_rect.py
│   ├── ua_show_result.py
│   ├── ua_track_player.py
│   └── utils
│   └── eb_utils.py
├── tracker.py
├── train_kitti.py
├── train_mot15.py
├── train_mot17.py
├── train_ua.py
├── utils
│   ├── augmentations.py
│   ├── operation.py
│   ├── __pycache__
│   │   ├── augmentations.cpython-37.pyc
│   │   ├── operation.cpython-37.pyc
│   │   └── timer.cpython-37.pyc
│   └── timer.py
└── weights
├── README.md
└── sst300_0712_83000.pth

36 directories, 189 files

标签:

实例下载地址

多目标跟踪(SORT,Deep_SORT,IOU17,SST)代码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警