vs = cv2.VideoCapture(0);
working fine
BUT
vs = cv2.VideoCapture("images/WIN_20190325_15_03_45_Pro.mp4");
getting this error in face_feature
def get_features(self, input_imgs):
images = load_data_list(input_imgs,160)
feed_dict = {self.x: images, self.phase_train_placeholder: False}
return self.sess.run(self.embeddings, feed_dict = feed_dict)
Input to reshape is a tensor with 3 values, but the requested shape has 32
vs = cv2.VideoCapture(0);
working fine
BUT
vs = cv2.VideoCapture("images/WIN_20190325_15_03_45_Pro.mp4");
getting this error in face_feature