当前位置:  开发笔记 > 编程语言 > 正文

Hacky在Keras中增强多声道图像的方式

如何解决《Hacky在Keras中增强多声道图像的方式》经验,为你挑选了0个好方法。

我需要增加多通道图像,并希望使用ImageDataGenerator不幸的是,它只支持1,3和4通道图像,我需要更多.是否可以直接编辑site-packages/Keras/preprocessing/image.py添加必要数量的频道?

    if x.shape[self.channel_axis] not in {1, 3, 4, XXX}:
        raise ValueError(
            'Expected input to be images (as Numpy array) '
            'following the dimension ordering convention "' + self.dim_ordering + '" '
            '(channels on axis ' + str(self.channel_axis) + '), i.e. expected '
            'either 1, 3 or 4 channels on axis ' + str(self.channel_axis) + '. '
            'However, it was passed an array with shape ' + str(x.shape) +
            ' (' + str(x.shape[self.channel_axis]) + ' channels).')

其中XXX - 是我需要的多个频道.这会破坏什么吗?谢谢!

推荐阅读
重庆制造漫画社
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有