-
Notifications
You must be signed in to change notification settings - Fork 6
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
sic/operations: Image thresholding #876
Comments
I would be happy to add it! It might be that some are already implemented by third party libraries we import. For example, Otsu thresholding has been implemented by |
Actually I have no idea, I read it generally and got only the idea 😥🤣
oh interesting I'll check it out, and do more research 😅 |
Update: Mind blowing! i made a little research and found many kinds of thresholding and mind blowing for cameras etc.. I'm happy i searched for that i learned a lot!
what will be the best option? I'm OK with both |
If you would want to add Otsu thresholding I would go with the implementation in imageproc. Note that, while it's marked as optional, it's also included by default (because frankly, the crate size doesn't add that much, and drawing text is quite useful). I'm not sure if there are other thresholding methods included in imageproc, so others may require implementing it manually anyways. That said, if you think you want to go for the maximum learning experience (and fun 😄) or you want to improve on the implementation in imageproc (e.g. speed wise), you can go for implementing it manually. |
Sorry for the late response, work don't give me much free time 😅 , |
Take all the time you need; there's no rush or deadline from my side 😄. Have fun! |
Hello
I read about image thresholding and i think i can implement it as a new operation, can i do it?, or it will not be useful for this tool
The text was updated successfully, but these errors were encountered: