gpt4 book ai didi

python - 使用 OpenCV 图像提供 Inception

转载 作者:太空宇宙 更新时间:2023-11-03 21:34:31 25 4
gpt4 key购买 nike

目前我正在为 Inception v3 测试提供:

image_data = tf.gfile.FastGFile(image_path, 'rb').read()
softmax_tensor = sess.graph.get_tensor_by_name('final_result:0')

predictions = sess.run(softmax_tensor, \
{'DecodeJpeg/contents:0': image_data})

但我需要在将图像提供给 CNN 之前裁剪图像,因此我使用 imread 并裁剪矩阵。但是如果我这样做,我就不能将它用作 image_data,因为它需要一个 jpeg 二进制文件。

最佳答案

    predictions = sess.run(softmax_tensor, {'DecodeJpeg/contents:0': cv2.imencode('.jpg', image_data)[1].tostring()})

关于python - 使用 OpenCV 图像提供 Inception,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38380486/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com