Marcus D. Bloice
Marcus D. Bloice
Hi @hsuRush, yes you are absolutely right. Thanks for spotting this, I will fix it right now or you could make a quick PR and I can merge it in...
Hi @eemberda Thanks for creating the issue. This **should** be fixed in the latest version of Augmentor, which was updated just today to 0.2.8. Use `pip install --upgrade Augmentor` to...
Hi all, right now job responsibilities are keeping me from actually doing anything on Augmentor I'm afraid :-) Apologies also for not replying to this issue for so long. However,...
Hi @Jingxin-LIU, no this currently not supported, however the filenames contain information about which are the ground truth images and so on.
I will look in to this. How many samples do you have to generate to reproduce this? At what point does it begin to slow down? Thanks!
Hi @kasperkamperman, yeah that seems strange, it looks like you are using Mac, I wonder if that is the problem... actually, a good thing to do is make sure you...
Hi @virtari well yeah you could use a generator, so for example just make a pipeline with one operation (distortion) and use a generator to supply images as needed. You...
Ok well, you could just use the function directly. So import the `Distort` class from the `Augmentor.Operations` module and pass images to it directly. Something like: ```python from Augmentor.Operations import...
No problem at all :-) Just a quick hint, if you take a look at the source code of any of the operation classes (for example the Distort class: )...
Hi sorry for the late reply, all the operations work with PIL images, but as I mentioned they need to be in a list, even if there is only one...