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
8daab3a6
Commit
8daab3a6
authored
Jul 13, 2011
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated image pyramid spec to include new pyramid functions.
parent
770067a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
+39
-0
image_pyramid_abstract.h
dlib/image_transforms/image_pyramid_abstract.h
+39
-0
No files found.
dlib/image_transforms/image_pyramid_abstract.h
View file @
8daab3a6
...
...
@@ -153,6 +153,45 @@ namespace dlib
};
// ----------------------------------------------------------------------------------------
class
pyramid_down_3_2
:
noncopyable
{
/*!
WHAT THIS OBJECT REPRESENTS
This is a function object with an interface identical to pyramid_down (defined
at the top of this file) except that it downsamples images at a ratio of 3 to 2
instead of 2 to 1.
!*/
};
// ----------------------------------------------------------------------------------------
class
pyramid_down_4_3
:
noncopyable
{
/*!
WHAT THIS OBJECT REPRESENTS
This is a function object with an interface identical to pyramid_down (defined
at the top of this file) except that it downsamples images at a ratio of 4 to 3
instead of 2 to 1.
!*/
};
// ----------------------------------------------------------------------------------------
class
pyramid_down_5_4
:
noncopyable
{
/*!
WHAT THIS OBJECT REPRESENTS
This is a function object with an interface identical to pyramid_down (defined
at the top of this file) except that it downsamples images at a ratio of 5 to 4
instead of 2 to 1.
!*/
};
// ----------------------------------------------------------------------------------------
}
#endif // DLIB_IMAGE_PYRaMID_ABSTRACT_H__
...
...
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