aleju / imgaug

Image augmentation for machine learning experiments.
http://imgaug.readthedocs.io
MIT License
14.42k stars 2.44k forks source link

[BUG] show_grid and draw_grid are incompatible #841

Open kylekam opened 1 year ago

kylekam commented 1 year ago

show_grid and draw_grid in version 0.4.0 are incompatible at the moment. draw_grid creates a single image of shape (H,W,3). show_grid expects (N,H,W,3) ndarray or iterable of (H,W,3) array.

Current fix is to just use imshow instead of show_grid.