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
Hi, thanks a lot for open-sourcing faced, this is awesome!
I have two questions:
predict
`
def predict(self, frame, thresh=0.85): input_img = cv2.resize(frame, (YOLO_SIZE, YOLO_SIZE)) / 255. input_img = np.expand_dims(input_img, axis=0) pred = self.sess.run([self.prob, self.x_center, self.y_center, self.w, self.h], feed_dict={self.training: False, self.img: input_img}) bboxes = self._absolute_bboxes(pred, frame, thresh) bboxes = self._correct(frame, bboxes) bboxes = self._nonmax_supression(bboxes) return bboxes`
Thank you so much.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, thanks a lot for open-sourcing faced, this is awesome!
I have two questions:
predict
method, do you have any particular reason for not returning the probability as well?`
Thank you so much.
The text was updated successfully, but these errors were encountered: