Resizing images into squares with OpenCV and Python
The resize method in OpenCV does not account for aspect ratio, and as a result our output image is simply stretched to the size we passed to the resize method as arguments. This is okay for some simple machine learning tasks, like an image classifier...
Read MoreGeneral Programming