论文翻译:Multi-camera Multi-object Tracking

本文提出了一种全局图模型的多摄像机多目标跟踪算法,结合外观和动态运动的相似性,利用LOMO特征和IHTLS算法进行目标识别与跟踪。在EPFL Terrace和Duke MTMC数据集上进行了评估。

文章链接(年份2017)

Abstract

      在本文中,我们提出了一种多摄像机系统下的多目标视觉跟踪流水线。对于多摄像机系统跟踪问题,跨摄像机的高效数据关联以及跨帧的数据关联变得比单摄像机系统跟踪更重要。然而,大多数多摄像机跟踪算法强调单个摄像机跨帧数据关联。因此,在我们的工作中,我们将跟踪问题建模为全局图,并采用通用最大多团优化问题作为核心算法,将跨帧和跨相机数据相关性考虑在一起。此外,为了计算好的相似度分数作为我们的图模型的输入,我们提取外观和动态运动的相似性。针对外观特征,进行了ReID的局部最大出现表示(LOMO)特征提取算法。在捕获动态信息时,我们为目标的每个轨迹建立Hankel矩阵,并用迭代Hankel最小二乘(IHTLS)算法对其进行秩估计。我们对来自EPFL CVLAB的具有挑战性的Terrace序列以及最近公布的Duke MTMC数据集进行评估。

1. Introduction

      回到2009年,在纽约发生严重恐怖袭击事件之后,人们解读出了更有效的方式来侦测恐怖分子。随着监控摄像机进入日常生活,政策可以通过查看电脑屏幕来监控社会安全。研究的目的是提出有用的算法和工具来支持人类检测可疑目标,识别所需目标,甚至跟踪目标。如今,随着高质量的高帧率监视摄像机的广泛使用,需要更高效的方法来产生更高的精度。

      在十年内,提出了许多具有竞争性能的定义明确的探测器和跟踪器。但是,他们大部分都是专注于单镜头的情况。多摄像头场景的另一个热门话题是人物识别。通过从不同的摄像头查看同一个人的不同检测,reID算法需要提取目标的代表性特征,并在出现相同的目标时识别它。
    在我们的论文中,我们正

### Multi-Camera Tracking Objectives and Goals In the context of computer vision, multi-camera tracking aims to monitor and follow objects across multiple camera views seamlessly. The primary objective is to maintain consistent identification and localization of targets as they move through different fields of view provided by a networked system of cameras. The specific goals include ensuring accurate detection and recognition of individuals or entities within each frame captured from various angles and positions[^1]. This involves addressing challenges such as occlusion, varying lighting conditions, and changes in appearance due to perspective differences between cameras. Another critical goal is achieving real-time performance while maintaining high precision in tracking accuracy over time. Systems must be capable of processing large volumes of video streams efficiently without significant delays that could compromise operational effectiveness[^2]. To accomplish these tasks effectively, advanced algorithms integrate intelligence features like deep learning models trained specifically for object classification and re-identification across non-overlapping areas covered by separate devices forming part of an integrated surveillance setup. ```python import cv2 from mtcnn import MTCNN detector = MTCNN() def detect_faces(image_path): image = cv2.imread(image_path) result = detector.detect_faces(image) bounding_boxes = [] for face in result: bbox = face['box'] bounding_boxes.append(bbox) return bounding_boxes ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值