简体   繁体   English

如何在使用更快的 rcnn/ssd 模型的同时加速对象检测

[英]How to speed up object detection while using faster rcnn/ ssd models

I've got 50 videos spanning 90 minutes each.我有 50 个视频,每个视频跨越 90 分钟。 Now I'm running SSD for object detection and saving the frames with objects and their timestamps in a csv file.现在我正在运行 SSD 进行对象检测,并将包含对象及其时间戳的帧保存在 csv 文件中。 But the problem is that it still takes entire 90 minutes for each of the videos.但问题是每个视频仍然需要整整 90 分钟。 My question :- Is there any way by which I can somehow kind of fast forward the SSD object detection model so that each video gets done in let's say 10/20 minutes maybe ?我的问题:- 有什么方法可以让我以某种方式快速推进 SSD 对象检测模型,以便每个视频都可以在 10/20 分钟内完成?

Is every single frame really matter to you?每一帧对你来说真的很重要吗? If not, just run the detection every x frames only, not on every frame.如果没有,只需每 x 帧运行一次检测,而不是每帧运行一次。 for example use:例如使用:

if (frame%2 == 0)
{
run detection
}

for taking only every two frames (even number frame)只拍摄每两帧(偶数帧)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Tensorflow对象检测API Faster-RCNN收敛但检测不准确 - Tensorflow Object Detection API Faster-RCNN converges but detection is innacurate 为什么如此低的预测率25 - 40 [sec / 1]使用更快的RCNN在GPU上进行自定义对象检测? - Why so low Prediction Rate 25 - 40 [sec/1] using Faster RCNN for custom object detection on GPU? 如何对自定义数据集执行RCNN对象检测? - How to perform RCNN object detection on custom dataset? AttributeError: module 'object_detection.protos.faster_rcnn_pb2' has no attribute 'AttentionPosition' - 恢复训练时 - AttributeError: module 'object_detection.protos.faster_rcnn_pb2' has no attribute 'AttentionPosition' - upon resuming training Tensorflow对象检测:为什么使用ssd mobilnet v1时图像中的位置会影响检测精度? - Tensorflow object detection: why is the location in image affecting detection accuracy when using ssd mobilnet v1? 如何使用主成分分析(PCA)加快检测速度? - How to use principal component analysis (PCA) to speed up detection? Faster-RCNN,我们为什么不只使用RPN进行检测? - Faster-RCNN, why don't we just use only RPN for detection? Tensorflow更快的rcnn提供了良好的检测能力,但仍然可以检测到可可物体的误报 - Tensorflow faster rcnn giving good detection but still detecting false positives with coco objects 了解更快的rcnn - Understanding Faster rcnn keras中的预训练目标检测模型 - pretrained object detection models in keras
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM