UFO.save_results

giant.ufo.ufo_class:

UFO.save_results(detection_results='./detections.csv', tracking_results='./tracks.csv')[source]

This method saves both the detection and tracker results to a file (as long as they have been run).

The detection results are saved to the detection_results path specified by the user. The tracking results are saved to the tracking_results path specified by the user. If the detector or the tracker have not been run a warning is printed and nothing happens.

Parameters:
  • detection_results (Path | str) – The file to save the detections csv file to

  • tracking_results (Path | str) – The file to save the tracking csv file to