Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
2d57a754
Commit
2d57a754
authored
Jun 12, 2015
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Gave the shape_predictor_trainer the ability to learn from datasets where
some landmarks are missing.
parent
3286a0a3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
shape_predictor.h
dlib/image_processing/shape_predictor.h
+0
-0
shape_predictor_abstract.h
dlib/image_processing/shape_predictor_abstract.h
+9
-0
No files found.
dlib/image_processing/shape_predictor.h
View file @
2d57a754
This diff is collapsed.
Click to expand it.
dlib/image_processing/shape_predictor_abstract.h
View file @
2d57a754
...
@@ -359,6 +359,9 @@ namespace dlib
...
@@ -359,6 +359,9 @@ namespace dlib
- images.size() > 0
- images.size() > 0
- for some i: objects[i].size() != 0
- for some i: objects[i].size() != 0
(i.e. there has to be at least one full_object_detection in the training set)
(i.e. there has to be at least one full_object_detection in the training set)
- for all valid p, there must exist i and j such that:
objects[i][j].part(p) != OBJECT_PART_NOT_PRESENT.
(i.e. You can't define a part that is always set to OBJECT_PART_NOT_PRESENT.)
- for all valid i,j,k,l:
- for all valid i,j,k,l:
- objects[i][j].num_parts() == objects[k][l].num_parts()
- objects[i][j].num_parts() == objects[k][l].num_parts()
(i.e. all objects must agree on the number of parts)
(i.e. all objects must agree on the number of parts)
...
@@ -370,6 +373,10 @@ namespace dlib
...
@@ -370,6 +373,10 @@ namespace dlib
shape_predictor, SP, such that:
shape_predictor, SP, such that:
SP(images[i], objects[i][j].get_rect()) == objects[i][j]
SP(images[i], objects[i][j].get_rect()) == objects[i][j]
This learned SP object is then returned.
This learned SP object is then returned.
- Not all parts are required to be observed for all objects. So if you
have training instances with missing parts then set the part positions
equal to OBJECT_PART_NOT_PRESENT and this algorithm will basically ignore
those missing parts.
!*/
!*/
};
};
...
@@ -408,6 +415,8 @@ namespace dlib
...
@@ -408,6 +415,8 @@ namespace dlib
and compare the result with the truth part positions in objects[i][j]. We
and compare the result with the truth part positions in objects[i][j]. We
then return the average distance (measured in pixels) between a predicted
then return the average distance (measured in pixels) between a predicted
part location and its true position.
part location and its true position.
- Note that any parts in objects that are set to OBJECT_PART_NOT_PRESENT are
simply ignored.
- if (scales.size() != 0) then
- if (scales.size() != 0) then
- Each time we compute the distance between a predicted part location and
- Each time we compute the distance between a predicted part location and
its true location in objects[i][j] we divide the distance by
its true location in objects[i][j] we divide the distance by
...
...
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