mdbloice / Augmentor

Image augmentation library in Python for machine learning.
https://augmentor.readthedocs.io/en/stable
MIT License
5.06k stars 865 forks source link

Output files missing #232

Open pshah0086 opened 3 years ago

pshah0086 commented 3 years ago

I tried using Datapipeline to generated augmented images along with its mask. But even after successfull execution I cannot see any output folder in neither my image directory nor my labels directeory. i also tried uncommenting Pipeline.py output directory member variable and specifing output directory path. But none of the method worked. i simply cannot see my augmented images and masks anywhere. Irony is i can visualize augmented images with its mask in Jupyter notebook using "imshow", it means augmentor worked and has generated images but i simply can't see it anywhere on my pc.

Please help if someone else also faced this issue. Thanks.

pratikkulkarni228 commented 3 years ago

Yeah, I am facing the same issue. Inspite of providing an output_directory to the Pipeline constructor, it saves the outputs in the source directory appended with output .

In the Pipeline.py line 143 is where it joins input and output paths and saves augmented images to this newly created path Weird