We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
vs = cv2.VideoCapture(0);
working fine
BUT
vs = cv2.VideoCapture("images/WIN_20190325_15_03_45_Pro.mp4");
getting this error in face_feature
The text was updated successfully, but these errors were encountered: