python有array基本类型吗_python – 如何将numpy数组转换为tensorflow可以分类的数据类型?...

我正在编写一个

Python程序来检测国际象棋棋盘的状态,我正在使用一个滑动窗口来检测每个棋子的位置.我的主程序检测到图像中的棋盘,并将其裁剪的图片传递给my_sliding_window方法.这应该使用Tensorflow来检测滑动窗口中的一块.从

this教程我看到图片的内容如下:

image_data = tf.gfile.FastGFile('picture.jpg', 'rb').read()

但我不想从文件中读取它,因为我已经将图片放在一个numpy数组中.如何通过Tensorflow对我的numpy数组进行分类?

谢谢.

码:

import tensorflow as tf, sys

import cv2

image_path = sys.argv[1]

img = cv2.imread('picture.jpg')

image_data = tf.convert_to_tensor(img)

print type(image_data) # this returns

# This is what is used in the tutorial I mentioned above

image_data2 = tf.gfile.FastGFile(image_path, 'rb').read()

print type(image_data2) # this returns

# Loads label file, strips off carriage return

label_lines = [line.rstrip() for line

in tf.gfile.GFile("retrained_labels.txt")]

# Unpersists graph from file

with tf.gfile.FastGFile("retrained_graph.pb", 'rb') as f:

graph_def = tf.GraphDef()

graph_def.ParseFromString(f.read())

_ = tf.import_graph_def(graph_def, name='')

with tf.Session() as sess:

# Feed the image_data as input to the graph and get first prediction

softmax_tensor = sess.graph.get_tensor_by_name('final_result:0')

predictions = sess.run(softmax_tensor, \

{'DecodeJpeg/contents:0': image_data})

# Sort to show labels of first prediction in order of confidence

top_k = predictions[0].argsort()[-len(predictions[0]):][::-1]

for node_id in top_k:

human_string = label_lines[node_id]

score = predictions[0][node_id]

print('%s (score = %.5f)' % (human_string, score))

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值