Search before asking
Description
I would like to save all the Detections data to csv. Currently the area is not saved, and my approach below isn't successful. This FR is to save the area (and potentially other detection attributes that are currently not saved)
with sv.CSVSink(csv_path) as sink:
for detection in detections:
sink.append(detection, {"area": detection.area})
AttributeError: 'tuple' object has no attribute 'area'
Use case
I will perform filtering in a separate application
Additional
No response
Are you willing to submit a PR?
Search before asking
Description
I would like to save all the Detections data to csv. Currently the
areais not saved, and my approach below isn't successful. This FR is to save the area (and potentially other detection attributes that are currently not saved)Use case
I will perform filtering in a separate application
Additional
No response
Are you willing to submit a PR?