TRACKING-BY-DETECTION in MATLAB windows下的程序调试

2024-02-20 02:48

本文主要是介绍TRACKING-BY-DETECTION in MATLAB windows下的程序调试,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

调试了好几天,这个程序终于运行成功了。

遇到的问题:

#include <pthread.h>

in it, I get the error: pthread.h: No such file or directory

查找了很长时间这个问题,没有解决,说这个头文件应该是在linux下的文件。

虽然Windows有pthread的移植版本pthreads-w32-2-9-1-release,但是不知道怎么添加到matlab的环境变量中,

加到系统变量中,不行。

无奈,在网上搜到了mexw64的版本,就是别人编译后的,终于跑成功。


我的目标是做人体的检测,愿下一步顺利。

###################################

# TRACKING-BY-DETECTION in MATLAB #
#  Andreas Geiger, MPI Tübingen   #
###################################

This is the tracking code that has been used for computing the tracklets
urban scene understanding papers:

@ARTICLE{Geiger2014PAMI,
  author = {Andreas Geiger and Martin Lauer and Christian Wojek and Christoph
Stiller and Raquel Urtasun},
  title = {3D Traffic Scene Understanding from Movable Platforms},
  journal = {PAMI},
  year = {2014}
}

@INPROCEEDINGS{Zhang2013ICCV,
  author = {Hongyi Zhang and Andreas Geiger and Raquel Urtasun},
  title = {Understanding High-Level Semantics by Modeling Traffic Patterns},
  booktitle = {ICCV},
  year = {2013}
}

Preparation:

If you want to also run the detection part of this toolbox you need to
compile the DPM object detector (otherwise you can also obtain
the pre-computed detections from www.cvlibs.net/software/trackbydet).
To do so, enter the 'lsvm4' directory and run make.m. You also need to
compile the implementation of the Hungarian algorithm by running make.m

in the tracking directory.


Usage:
1) Download the KITTI raw sequences
   - 2011_09_26_drive_0056
   - 2011_09_26_drive_0059
   - 2011_09_29_drive_0026
   from www.cvlibs.net/datasets/kitti/raw_data.php.
2) You need to run the object detector first. You don't need to train it,
   pre-computed models for cars, pedestrians and cyclists can be found
   in the folder 'models'. To run the object detector, first open
   'run_detection.m' and modify the variables base_dir and seq_dir to point
   to one of the downloaded sequences.
   Run the script to compute the object detections. Note that this part
   takes approximately 5-10 seconds per image. The results for the left color
   image (image_02) are stored in the 'object_02' subfolder of the sequence
   directory.
   - OR -

   Alternatively, you can also use the pre-computed detections provided
   within this zip file in the objects folder. Simply put the
   corresponding object_02 folder underneath the corresponding sequence
   folder, ie, 2011_09_26_drive_0056/object_02.
3) To run the tracking stage, open 'run_tracking.m' and modify
   the variables base_dir and seq_dir to point to one of the downloaded
   sequences for which the folder 'object_02' exists. Run the script.
   The tracking results are stored in 'tracking_results.txt'.
4) To visualize the tracking results, , open 'run_visualization.m' and modify
   the variables base_dir and seq_dir to point to one of the downloaded
   sequences for which the file 'tracking_results.txt' exists. Images with
   colored bounding boxes are displayed and stored in the subfolder

   'track_02'.



程序地址:我已经上次到我的CSDN资源里面

这篇关于TRACKING-BY-DETECTION in MATLAB windows下的程序调试的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/726804

相关文章

Windows Server服务器上配置FileZilla后,FTP连接不上?

《WindowsServer服务器上配置FileZilla后,FTP连接不上?》WindowsServer服务器上配置FileZilla后,FTP连接错误和操作超时的问题,应该如何解决?首先,通过... 目录在Windohttp://www.chinasem.cnws防火墙开启的情况下,遇到的错误如下:无法与

Python解析器安装指南分享(Mac/Windows/Linux)

《Python解析器安装指南分享(Mac/Windows/Linux)》:本文主要介绍Python解析器安装指南(Mac/Windows/Linux),具有很好的参考价值,希望对大家有所帮助,如有... 目NMNkN录1js. 安装包下载1.1 python 下载官网2.核心安装方式3. MACOS 系统安

Windows系统下如何查找JDK的安装路径

《Windows系统下如何查找JDK的安装路径》:本文主要介绍Windows系统下如何查找JDK的安装路径,文中介绍了三种方法,分别是通过命令行检查、使用verbose选项查找jre目录、以及查看... 目录一、确认是否安装了JDK二、查找路径三、另外一种方式如果很久之前安装了JDK,或者在别人的电脑上,想

Windows命令之tasklist命令用法详解(Windows查看进程)

《Windows命令之tasklist命令用法详解(Windows查看进程)》tasklist命令显示本地计算机或远程计算机上当前正在运行的进程列表,命令结合筛选器一起使用,可以按照我们的需求进行过滤... 目录命令帮助1、基本使用2、执行原理2.1、tasklist命令无法使用3、筛选器3.1、根据PID

Python中Windows和macOS文件路径格式不一致的解决方法

《Python中Windows和macOS文件路径格式不一致的解决方法》在Python中,Windows和macOS的文件路径字符串格式不一致主要体现在路径分隔符上,这种差异可能导致跨平台代码在处理文... 目录方法 1:使用 os.path 模块方法 2:使用 pathlib 模块(推荐)方法 3:统一使

Windows server服务器使用blat命令行发送邮件

《Windowsserver服务器使用blat命令行发送邮件》在linux平台的命令行下可以使用mail命令来发送邮件,windows平台没有内置的命令,但可以使用开源的blat,其官方主页为ht... 目录下载blatBAT命令行示例备注总结在linux平台的命令行下可以使用mail命令来发送邮件,Win

Windows环境下安装达梦数据库的完整步骤

《Windows环境下安装达梦数据库的完整步骤》达梦数据库的安装大致分为Windows和Linux版本,本文将以dm8企业版Windows_64位环境为例,为大家介绍一下达梦数据库的具体安装步骤吧... 目录环境介绍1 下载解压安装包2 根据安装手册安装2.1 选择语言 时区2.2 安装向导2.3 接受协议

jdk21下载、安装详细教程(Windows、Linux、macOS)

《jdk21下载、安装详细教程(Windows、Linux、macOS)》本文介绍了OpenJDK21的下载地址和安装步骤,包括Windows、Linux和macOS平台,下载后解压并设置环境变量,最... 目录1、官网2、下载openjdk3、安装4、验证1、官网官网地址:OpenJDK下载地址:Ar

Windows设置nginx启动端口的方法

《Windows设置nginx启动端口的方法》在服务器配置与开发过程中,nginx作为一款高效的HTTP和反向代理服务器,被广泛应用,而在Windows系统中,合理设置nginx的启动端口,是确保其正... 目录一、为什么要设置 nginx 启动端口二、设置步骤三、常见问题及解决一、为什么要设置 nginx

在 Windows 上安装 DeepSeek 的完整指南(最新推荐)

《在Windows上安装DeepSeek的完整指南(最新推荐)》在Windows上安装DeepSeek的完整指南,包括下载和安装Ollama、下载DeepSeekRXNUMX模型、运行Deep... 目录在www.chinasem.cn Windows 上安装 DeepSeek 的完整指南步骤 1:下载并安装