keras-yolo2
keras-yolo2 copied to clipboard
imgaug ?
From where do you get imgaug ? Thank you. I can't find it for anaconda. I need to install it myself ?
I believe they are from here. That site does have install instructions. Yes, you would need to get it yourself. I simply removed that code from preprocessing, but you doing that would depend on your specific application.
Thanks a lot !
You can directly install imgaug to your conda enviornment from here. I tried this and it is working finely
ok thanks
It was such a pain in my ass to run this project because of imgaug package. Finally, I am able to run this project. Here are my insights.
If you want to run this project above tensorflow-gpu=1.3.0 or planning to use >= python3.5then you can't use imgaug based preprocessing, so it's better to remove it.
What I did..
- docker pull floydhub/tensorflow:1.3.0-gpu-py2_aws.12
- install opencv-python 4.0.21
- install imageio 2.6.x
- pip install imgaug --no-dependencies
- scikit-image 0.14.2
Hope it will be useful.