-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
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
What is the gallery format temlates? #42
Comments
Is there a chance that someone will answer? |
Hey @DimIsaev, thanks for raising the issue. Regarding
The implementation of the gallery is outside of the score of the Best regards, |
I asked about the format, not the implementation! I'll ask you a different question: thanks |
code this
how format this list template_gallery ? |
Can I hope for an answer? Maybe we should close the Issues section? |
It's still vague to me what you try to achieve. Hence let me directly answer this question you asked
What you can do is to load all your images, loop over them calling f_img = cv2.imread("/path/to/f_img", cv2.IMREAD_GRAYSCALE)
s_img = cv2.imread("/path/to/s_img", cv2.IMREAD_GRAYSCALE)
iris_templates: List[IrisTemplate] = []
for img in [f_img, s_img]:
output = iris_pipeline(f_img, eye_side="left")
iris_templates.append(output["iris_template"}) Regarding your second question
If you already have As you also saw Best regards, |
Hey @DimIsaev, Please, let me know if you manage to solve your problem, so we can close this issue, or you still would like some support from our side? Best regards, |
in docs
https://worldcoin.github.io/open-iris/_code_subpages/iris.nodes.matcher.html
template_gallery (IrisTemplate) – Iris template from gallery.
what is the gallery format?
I also need an example of storing templates in a gallery or another database
thanks
The text was updated successfully, but these errors were encountered: