-
Notifications
You must be signed in to change notification settings - Fork 4
Document ultra light face detector without postproc variant #14
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
base: main
Are you sure you want to change the base?
Document ultra light face detector without postproc variant #14
Conversation
tensors/ultra-lightweight-face-detection-rfb-320-v1-variant-1-out-boxes-without-postproc.md
Show resolved
Hide resolved
| bounding-box-center-x = top-left-x * CENTER_VARIANCE * anchor-width + anchor-center-x | ||
| bounding-box-center-y = top-left-y * CENTER_VARIANCE * anchor-height + anchor-center-y |
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 don't really understand this formula but maybe once you clarify anchor-center-x and anchor-center-y. It will be more clear.
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 formula is taken from the tensor decoder... It moves the anchor box by a certain value I think
| ``` | ||
| bounding-box-center-x = top-left-x * CENTER_VARIANCE * anchor-width + anchor-center-x | ||
| bounding-box-center-y = top-left-y * CENTER_VARIANCE * anchor-height + anchor-center-y | ||
| bounding-box-width = expf (width * SIZE_VARIANCE) * anchor-width |
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.
what is expf ?
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.
it's expf(x) is the C function that does e^(x) .. would that be clearer ?
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.
something like:
| bounding-box-width = expf (width * SIZE_VARIANCE) * anchor-width | |
| bounding-box-width = e^(width * SIZE_VARIANCE) * anchor-width |
tensors/ultra-lightweight-face-detection-rfb-320-v1-variant-1-out-boxes-without-postproc.md
Show resolved
Hide resolved
tensors/ultra-lightweight-face-detection-rfb-320-v1-variant-1-out-boxes-without-postproc.md
Show resolved
Hide resolved
f6a1fae to
581b090
Compare
No description provided.