Marcus D. Bloice
Marcus D. Bloice
I really do not know what the `not supported between instances of '_E'` error is supposed to mean. Aside from it being a type mismatch. In the Augmentor package's code...
Hi @gnaygnak, how many images are in `train` and `mask` directories? Are there any sub folders in either directory? I am having some issues with the new ground truth functionality,...
Hi @gnaygnak, no it should work with any number of images. As long as the file names match between the two directories you can use any number of images. M.
Hi @Marwen-Bhj, no not at the moment, however you can use `DataPipeline` for such situations: ```python p = Augmentor.DataPipeline(images, y) ``` Where `images` contains any number of images/masks in array...
Hi @Marwen-Bhj, you could try using PIL/Pillow to create images from array data, so something like ```python from PIL import Image im = Image.fromarray(augmented_images[...]) im.save('/path/image.png') ``` and do that in...
@Marwen-Bhj ok sure, glad you got it to work out :-) M.
Hi @oohurbert I think that kind of noise you show in your example image are just compression artefacts, are they not? If you saved an image as JPEG with high...
@oohurbert some kind of random noising operation might be useful. I will mark this issue as an enhancement and perhaps include in an upcoming release. By the way, it is...
Hi @Smellly, I will take a proper look at this ASAP, this week hopefully. Right now work is keeping me from doing anything on Augmentor, but I will find some...
Hi @tigerdhl, not entirely sure what you mean. Can you give a minimal working example? Some piece of code where the error is occurring?