-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Create sv.BlurAnnotator #395 #405
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello there, thank you for opening an PR ! 🙏🏻 The team was notified and they will get back to you asap.
@Rajarshi-Misra Please accept and sign CLA so we can start review it. Please update description of PR and link related issues. |
@hardikdava I've made the suggested changes and signed the CLA |
Hi, @Rajarshi-Misra! 👋🏻 Thanks a lot for your interest in supervision! 🔥 We try to make annotators accessible for users like this: import supervision as sv
blur_annotator = sv.BlurAnnotator() To make this happen you need to add an import of from supervision.annotators.core import (
BoundingBoxAnnotator,
BoxCornerAnnotator,
CircleAnnotator,
EllipseAnnotator,
LabelAnnotator,
MaskAnnotator,
TraceAnnotator,
) And make it: from supervision.annotators.core import (
BoundingBoxAnnotator,
BoxCornerAnnotator,
BlurAnnotator,
CircleAnnotator,
EllipseAnnotator,
LabelAnnotator,
MaskAnnotator,
TraceAnnotator,
) |
@Rajarshi-Misra I also encountered this error when I tried to run
Take a look at this colab: https://colab.research.google.com/drive/1GuG1yiiiw5knJOy-fhuGkhtjqLNkjMvE?usp=sharing |
I'll resolve the error as soon as possible |
@SkalskiP I've resolved the issue and committed to the branch. This is a result for your reference. |
@Rajarshi-Misra and @hardikdava, awesome work! I'll include it in our release tomorrow! 🔥 |
@Rajarshi-Misra, I want to include you in the release social media post tomorrow. Could out lin here your LinkedIn and Twitter? |
Twitter: @rajistalking |
Description
Created sv.BlurAnnotator. The code contain a BlurAnnotator class which contains function to blur annotate the detections.
Type of change
How has this change been tested, please provide a testcase or example of how you tested the change?
YOUR_ANSWER
Any specific deployment considerations
The docs might require update due to the new annotator class
Docs