如何在张量流中将输入图像与矩阵相乘?

时间:2017-08-03 09:07:25

标签: python tensorflow

这里我拍摄了一张图片和一张简单的矩阵,我希望将它们与我得到的结果相乘,我希望将其显示为图像..我该怎么做呢?

这里有一点我在tensorflow中尝试过的代码,我不知道它是不是真的

import tensorflow as tf
import numpy as np
import matplotlib.pyplot as plt
from PIL import Image

image = tf.image.decode_jpeg(tf.read_file("C:/Users/HP/Desktop/7seven.jpg"))
tf.cast(image, tf.float32)
c = tf.segment_sum(image, tf.constant([0, 0, 1]))

0 个答案:

没有答案