将多个.img文件更改为.png的代码,然后转换为numpy数组
我正在进行卷积神经网络分类,目前我的所有瓷砖都处于.img格式(感谢Arcmap)。我知道我需要以.png格式获得它们,但是还没有找到可以转换整个文件夹的代码。那可行吗?
最终,我还需要将所有这些.pngs放入一个numpy阵列中。我找到了基本的代码,该代码将仅用于.png,但是有没有办法一次转换整个文件夹?
谢谢大家!
I'm doing a convolutional neural network classification and currently all my tiles are in .img format (thanks ArcMap). I know I need to get them in .png format, but haven't found code that could convert a whole folder of them. Is that doable?
Eventually I also need to get all those .pngs into a numpy array. I found basic code that will do it for just .png, but is there a way to convert the whole folder at once?
Thanks everyone!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它是可行的,只需使用python PIL !并循环浏览带有Glob的文件夹中的所有文件。
一些示例代码:
Yes it is doable, just use Python Pil! and loop over all files in the folder with glob.
Some example code: