We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23db15f commit aa05971Copy full SHA for aa05971
src/napari_deeplabcut/_writer.py
@@ -82,6 +82,7 @@ def write_hdf(filename, data, metadata):
82
83
84
def _write_image(data, output_path, plugin=None):
85
+ Path(output_path).parent.mkdir(parents=True, exist_ok=True)
86
imsave(
87
output_path,
88
img_as_ubyte(data).squeeze(),
0 commit comments