YOLO(暗网):如何更改检测(predictions.jpg)的输出文件目录?

YOLO (Darknet): How to change the output file directory of a detection (predictions.jpg)?

使用预训练权重检测图像中对象的 Darknet 指南是 here

运行的命令是:

./darknet detect cfg/yolov3.cfg yolov3.weights data/dog.jpg

检测结果当前保存在当前目录下。 我如何更改保存输出文件 predictions.jpg 的目录?

在detector.c下面有一个这样的函数save_image(im, "predictions");

import subprocess

comand = "/darknet detector test cfg/coco.data cfg/yolov3.cfg yolov3.weights {0} -dont_show"

def __run_shell_command(command):    
    output = subprocess.check_output(command, shell=True).decode("ascii")
    return output

images = ["a.jpg","b.jpg"]

for image in images:
    __run_shell_command(command.format(image))