卷积神经网络下的图像处理

运用tensorflow内置卷积函数tf.nn.conv2d(input,filter,strides,padding,name=None)对图像进行低卷积处理。
conv2d中的参数为:
input:输入的图像(张量)大小为[batch,in_height,in_width,in_channels]
filter:卷积核,大小为[filter_height,filter_width,in_channels,out_channels]
strides:为步长。大小为:[1,stride_h,stride_w,1]
padding:表示对输入图像进行0填充。可选为:SAME(此时输入与输出的大小完全相同),VALID:对输入图像不进行0填充。
实例代码:

import tensorflow as tf
import numpy as np
import cv2
import matplotlib.pyplot as plt

img = cv2.imread("C:\\lena1.png")
plt.subplot(1,2,1)
plt.imshow(img)
img = np.array(img,dtype = "float32")
x_image = tf.reshape(img,[1,512,512,3])
filter =  tf.Variable(tf.ones([7,7,3,1]))

init = tf.global_variables_initializer()
with tf.Session() as sess:
    sess.run(init)
    res = tf.nn.conv2d(x_image,filter,[1,2,2,1],padding = "SAME")
    res_image = sess.run(tf.reshape(res,[256,256])) / 128 + 1
plt.subplot(1,2,2)
plt.imshow(res_image)
plt.show()
cv2.imshow("lena",res_image.astype("uint8"))
cv2.waitKey()

输出显示:
在这里插入图片描述
在这里插入图片描述

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值