Commit 1fe548f3 authored by Davis King's avatar Davis King

Added some useful typedefs to this object.

parent 2dcc0253
...@@ -17,12 +17,14 @@ namespace dlib ...@@ -17,12 +17,14 @@ namespace dlib
template < template <
typename feature_extractor, typename feature_extractor,
typename hash_function_type = projection_hash typename hash_function_type_ = projection_hash
> >
class hashed_feature_image : noncopyable class hashed_feature_image : noncopyable
{ {
public: public:
typedef feature_extractor feature_extractor_type;
typedef hash_function_type_ hash_function_type;
typedef std::vector<std::pair<unsigned int,double> > descriptor_type; typedef std::vector<std::pair<unsigned int,double> > descriptor_type;
......
...@@ -15,7 +15,7 @@ namespace dlib ...@@ -15,7 +15,7 @@ namespace dlib
template < template <
typename feature_extractor, typename feature_extractor,
typename hash_function_type = projection_hash typename hash_function_type_ = projection_hash
> >
class hashed_feature_image : noncopyable class hashed_feature_image : noncopyable
{ {
...@@ -23,7 +23,7 @@ namespace dlib ...@@ -23,7 +23,7 @@ namespace dlib
REQUIREMENTS ON feature_extractor REQUIREMENTS ON feature_extractor
- must be an object with an interface compatible with dlib::hog_image - must be an object with an interface compatible with dlib::hog_image
REQUIREMENTS ON hash_function_type REQUIREMENTS ON hash_function_type_
- must be an object with an interface compatible with projection_hash - must be an object with an interface compatible with projection_hash
INITIAL VALUE INITIAL VALUE
...@@ -53,6 +53,8 @@ namespace dlib ...@@ -53,6 +53,8 @@ namespace dlib
public: public:
typedef feature_extractor feature_extractor_type;
typedef hash_function_type_ hash_function_type;
typedef std::vector<std::pair<unsigned int,double> > descriptor_type; typedef std::vector<std::pair<unsigned int,double> > descriptor_type;
hashed_feature_image ( hashed_feature_image (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment