在自定义目标位置保存opencv.Filestorage

时间:2019-03-24 09:35:50

标签: python opencv

不了解如何将cv2 FileStorage对象写入到当前工作目录以外的新目录中。

此添加的代码保存到CWD

对于图块中的图块:

    fs_write = cv2.FileStorage('{}.xml'.format(tile.number), 
    cv2.FILE_STORAGE_WRITE)
    fs_write.write("mat_pointcloud", tile.image)
    fs_write.release()

1 个答案:

答案 0 :(得分:0)

'{}.xml'.format(tile.number)是带有格式的字符串,您可以选择以下几种方式:
要么先行一步

'path/to/{}.xml'.format(tile.number)

或者如果您有其他路径,请执行以下操作:

'{}/{}.xml'.format(path_to_dir, tile.number)

通常在new style formatting上阅读