0

所以我正在使用暗流来检测视频中的对象(帽子)。它检测到戴帽子的人,并在视频中在帽子周围绘制边界框。现在我想将检测到的边界框的右上角和左下角坐标保存到 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

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

4

1 回答 1

2

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

干杯!

于 2019-02-19T12:21:38.060 回答