-1
我有一個圖像(我沒有數據集)我想訓練張量模型, ,這樣我就可以使用該模型來快速識別圖像。用tensorflow訓練您自己的圖像?
我已經實現了一個這樣的東西,但它不工作:
import tensorflow as tf
filenames = ['pic.jpg']
# step 2
filename_queue = tf.train.string_input_producer(filenames)
# step 3: read, decode and resize images
reader = tf.WholeFileReader()
filename, content = reader.read(filename_queue)
image = tf.image.decode_jpeg(content, channels=3)
image = tf.cast(image, tf.float32)
resized_image = tf.image.resize_images(image, [224, 224])
# step 4: Batching
image_batch = tf.train.batch([resized_image], batch_size=8)
此外,vuforia如何能夠只用一個形象這麼快認識?我想要在張量流中實現類似的實現