Dan Morris

Results 50 comments of Dan Morris

Closed the following issues: * [Tiling images in repeat detection elimination](https://github.com/agentmorris/MegaDetector/tree/main/api/batch_processing/postprocessing/repeat_detection_elimination#visualizing-the-stuff-youre-throwing-away) (Thanks, @doantam!) * [Supporting inference with the YOLOv5 native inference functions](https://github.com/agentmorris/MegaDetector/blob/main/detection/run_inference_with_yolov5_val.py)

Closed: * [compare_batch_results.py](https://github.com/agentmorris/MegaDetector/blob/main/api/batch_processing/postprocessing/compare_batch_results.py) also lacks a command-line driver (i.e., a main() wrapper)... so, add a main() function.

Closed the issue re: checkpoint support for multicore inference (thanks, Alex Morling!), and the issue with passing force_cpu deeper into the call stack (easier to just do that with CUDA_VISIBLE_DEVICES).

v0 release of a script to break images up into tiles, run MD on tiles, and stitch the results back together ([run_tiled_inference.py](https://github.com/agentmorris/MegaDetector/blob/main/detection/run_tiled_inference.py)). Useful when a user has Very Large Images...

Closed the issues re: merge_detections.py (a) not knowing how to merge at the level of individual detections, and (b) not having a command-line driver. Thanks, @atmorling!

Closed the issue re: saving datetime, image size, and EXIF metadata in run_detector_batch. Thanks, @atmorling!

Closed the issue re: running YOLOv5 val.py inference (run_inference_with_yolov5_val.py) on Windows, which was really just a "does this work?" issue. The answer for now is "yes, it works, but it...

Closed and removed the issue re: sorting by confidence in postprocess_batch_results.py.

Closed issues related to making requirements.txt work, and therefore supporting newer versions of dependent packages, and therefore making the pip package work... better.

Closed the issue related to MD --> YOLO conversion; there's almost never a reason to do this directly, instead there are new scripts to convert MD results to [COCO](https://github.com/agentmorris/MegaDetector/blob/main/api/batch_processing/postprocessing/md_to_coco.py) or...