作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个预训练模型。使用 20000 个“灰色”样本训练的模型。 İt 正在处理“灰色”测试样本。但我想用网络摄像头测试这个模型。这是我的代码:
#Load the saved model
model = keras.models.load_model('C:\keras\handrecognition_model.h5')
video = cv2.VideoCapture(0)
while True:
_, frame = video.read()
im = Image.fromarray(frame, 'RGB')
im = im.resize((128, 128))
img_array = np.array(im)
img_array = np.expand_dims(img_array, axis=0)
prediction = int(model.predict(img_array)[0][0])
# if prediction is 0, which means I am missing on the image, then show the frame in gray color.
if prediction == 0:
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
cv2.imshow("Capturing", frame)
key = cv2.waitKey(1)
if key == ord('q'):
break
video.release()
cv2.destroyAllWindows()
出现错误:ValueError:检查输入时出错:预期 conv2d_1_input 的形状为 (120, 320, 1),但得到的数组形状为 (128, 128, 3)。
模型训练:
# Construction of model
model = Sequential()
model.add(Conv2D(32, (5, 5), activation='relu', input_shape=(120, 320, 1)))
model.add(MaxPooling2D((2, 2)))
model.add(Conv2D(64, (3, 3), activation='relu'))
model.add(MaxPooling2D((2, 2)))
model.add(Conv2D(64, (3, 3), activation='relu'))
model.add(MaxPooling2D((2, 2)))
model.add(Flatten())
model.add(Dense(128, activation='relu'))
model.add(Dense(10, activation='softmax'))
编辑:我这样更新代码:
_, frame = video.read()
frame = cv2.resize(frame, (120, 360))
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
img_array = np.array(gray)
ValueError:检查输入时出错:预期 conv2d_1_input 有 4 个维度,但得到形状为 (1, 360, 120) 的数组
编辑 3:我想,它正在工作。现在我将发送帧进行预测,我将找到手势。如果可以的话,我会分享。谢谢。
_, frame = video.read()
frameCopy=frame.copy()
frameCopy = cv2.resize(frameCopy, (120, 320))
gray = cv2.cvtColor(frameCopy, cv2.COLOR_BGR2GRAY)
img_array = np.array(gray)
img_array = img_array.reshape(120, 320, 1)
img_array = np.expand_dims(img_array, axis=0)
最佳答案
在您编辑后回答您的问题:您需要 4 个维度而不是三个:(批量大小、 channel 、宽度、高度)。所以请尝试以下操作:
img_array = np.array(gray)
img_array = img_array.reshape(1, 1, 360, 120)
关于python - 如何将 Keras 与网络摄像头一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63116917/
我是一名优秀的程序员,十分优秀!