chainer / chainercv

ChainerCV: a Library for Deep Learning in Computer Vision
MIT License
1.48k stars 304 forks source link

Add a img.resize function in utils #899

Closed changbaishan closed 5 years ago

changbaishan commented 5 years ago

Sometimes user run into memory error. This problem could be avoided with resizing input image. A img.resize function in utils package can help users accomplish this. Thanks very much.

Hakuyume commented 5 years ago

We already have transforms.resize. https://chainercv.readthedocs.io/en/stable/reference/transforms.html#resize

changbaishan commented 5 years ago

Indeed. Thank you very much!