-
Notifications
You must be signed in to change notification settings - Fork 0
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
Feat/annotation builder #178
base: main
Are you sure you want to change the base?
Conversation
❌ 5 Tests Failed:
View the top 3 failed test(s) by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
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.
Looks great.
ColorRGBA = Tuple[float, float, float, float] | ||
|
||
|
||
class AnnotationHelper: |
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.
I think the name of this class used to be AnnotationBuilder
, why was it replaced for AnnotationHelper
? I think that AnnotationBuilder
is more suiting name.
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.
Also, why not an ImgAnnotationBuilder
if it refers to dai.ImgAnnotation
creation?
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.
The name was changed after some discussion in this slack thread. Personally I don't have any strong opinions on the name of this class, so we can go with whatever you prefer.
Also I would consider moving the class from |
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.
LGTM
ColorRGBA = Tuple[float, float, float, float] | ||
|
||
|
||
class AnnotationHelper: |
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.
Also, why not an ImgAnnotationBuilder
if it refers to dai.ImgAnnotation
creation?
Purpose
Create
AnnotationHelper
class to simplifydai.ImgAnnotations
message creation.Dependencies & Potential Impact
None / not applicable
Deployment Plan
None / not applicable
Testing & Validation
None / not applicable