python [img enhance]图像增强检查器#keras

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python [img enhance]图像增强检查器#keras相关的知识,希望对你有一定的参考价值。

import matplotlib.pyplot as plt
from keras.preprocessing import image



inx = 5000
x = x_train[inx]
x = x.reshape((1, ) + x.shape)

i = 1
for batch in datagen.flow(x, batch_size=1):
	plt.figure(i)
	imgplot = plt.imshow(image.array_to_img(batch[0]))
	i += 1
	if i % 20 == 0:
		break
	plt.show()

以上是关于python [img enhance]图像增强检查器#keras的主要内容,如果未能解决你的问题,请参考以下文章

图像增强处理Python程序

Python批量增强图像

RetinexNet: Deep Retinex Decomposition for Low-Light Enhancement

低光照增强论文阅读:Zero-Reference Deep Curve Estimation for Low-Light Image Enhancement

Python Enhancement Proposal #8PEP8

《Python Enhancement Proposal #8》要点 学习摘录