Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
770f138e
Unverified
Commit
770f138e
authored
Oct 27, 2017
by
Jonathan Huang
Committed by
GitHub
Oct 27, 2017
Browse files
Merge pull request #2614 from tombstone/box_coder_update
update documentation in keypoint boxcoder.
parents
4702de29
8c767cfe
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
research/object_detection/box_coders/keypoint_box_coder.py
research/object_detection/box_coders/keypoint_box_coder.py
+2
-2
No files found.
research/object_detection/box_coders/keypoint_box_coder.py
View file @
770f138e
...
@@ -23,9 +23,9 @@ to box coordinates):
...
@@ -23,9 +23,9 @@ to box coordinates):
th = log(h / ha)
th = log(h / ha)
tw = log(w / wa)
tw = log(w / wa)
tky0 = (ky0 - ya) / ha
tky0 = (ky0 - ya) / ha
tkx0 = (kx0 - xa) /
h
a
tkx0 = (kx0 - xa) /
w
a
tky1 = (ky1 - ya) / ha
tky1 = (ky1 - ya) / ha
tkx1 = (kx1 - xa) /
h
a
tkx1 = (kx1 - xa) /
w
a
...
...
where x, y, w, h denote the box's center coordinates, width and height
where x, y, w, h denote the box's center coordinates, width and height
respectively. Similarly, xa, ya, wa, ha denote the anchor's center
respectively. Similarly, xa, ya, wa, ha denote the anchor's center
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment