gpt4 book ai didi

python-3.x - 将视频中检测到的边界框的坐标写入txt或csv文件

转载 作者:行者123 更新时间:2023-12-02 17:05:43 24 4
gpt4 key购买 nike

所以我正在使用darkflow来检测视频中的对象(帽子)。它可以检测戴帽子的人,并在视频中在帽子周围绘制边框。现在,我想将检测到的边界框的右上角和左下角坐标保存到txt或csv文件中,以进行进一步处理。我用opencv-python编写了代码。我可以显示视频并成功绘制边界框,但是我不知道如何保存框的坐标。知道怎么做吗?

我出于目的使用Mark Jay的代码

#import libraries
import cv2
from darkflow.net.build import TFNet
import numpy as np
import time

#load model and weights and threshold
option = {
'model': 'cfg/yolo-5c.cfg',
'load': 'bin/yolo.weights',
'threshold': 0.15,
'gpu': 1.0
}


tfnet = TFNet(option)

#open video file
capture = cv2.VideoCapture('videofile_1080_20fps.avi')
colors = [tuple(255 * np.random.rand(3)) for i in range(5)]

#read video file and set parameters for object detection
while (capture.isOpened()):
stime = time.time()
ret, frame = capture.read()
if ret:
results = tfnet.return_predict(frame)
for color, result in zip(colors, results):
tl = (result['topleft']['x'], result['topleft']['y']) # show top left coordinate
br = (result['bottomright']['x'], result['bottomright']['y']) #show bottom right coordinate
label = result['label'] # show label
frame = cv2.rectangle(frame, tl, br, color, 7)
frame = cv2.putText(frame, label, tl, cv2.FONT_HERSHEY_COMPLEX,
1, (0, 0, 0), 2)
cv2.imshow('frame', frame)
print('FPS {:.1f}'.format(1 / (time.time() - stime)))
if cv2.waitKey(1) & 0xFF == ord('q'):
break
else:
capture.release()
cv2.destroyAllWindows()
break

如您所见,我可以显示视频并检测绘制边框的对象。现在,我的目标是保存这些边界框的像素坐标,仅左上角和右下角。有想法吗?

最佳答案

代码中的“结果”参数是一组坐标。您制作了一个list,并附加了result中的值,然后在“其他”中将其写入.txt文件。

干杯!

关于python-3.x - 将视频中检测到的边界框的坐标写入txt或csv文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54691593/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com