We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Doesn't float center_y() { return right + height() / 2; } look wrong ?
I'd expect it to be something like: float center_y() { return top + height() / 2; }
typedef struct { float left; float top; float right; float bottom; float width() { return right - left; } float height() { return bottom - top; } float center_x() { return left + width() / 2; } float center_y() { return right + height() / 2; } }BBox;
From :
deepstream_tao_apps/apps/tao_others/deepstream-faciallandmark-app/ds_facialmark_meta.h
Line 53 in 4a8c6ab
The text was updated successfully, but these errors were encountered:
created PR #92
Sorry, something went wrong.
No branches or pull requests
Doesn't
float center_y() { return right + height() / 2; }
look wrong ?
I'd expect it to be something like:
float center_y() { return top + height() / 2; }
From :
deepstream_tao_apps/apps/tao_others/deepstream-faciallandmark-app/ds_facialmark_meta.h
Line 53 in 4a8c6ab
The text was updated successfully, but these errors were encountered: