Commit a41e00d8 authored by Davis King's avatar Davis King

Added missing template arguments.

parent b22e9f2f
...@@ -107,10 +107,11 @@ namespace dlib ...@@ -107,10 +107,11 @@ namespace dlib
template < template <
typename image_array, typename image_array,
typename feature_extractor typename feature_extractor,
typename box_generator
> >
void setup_hashed_features ( void setup_hashed_features (
scan_image_boxes<hashed_feature_image<feature_extractor, projection_hash> >& scanner, scan_image_boxes<hashed_feature_image<feature_extractor, projection_hash>,box_generator >& scanner,
const image_array& images, const image_array& images,
const feature_extractor& fe, const feature_extractor& fe,
int bits, int bits,
...@@ -148,10 +149,11 @@ namespace dlib ...@@ -148,10 +149,11 @@ namespace dlib
template < template <
typename image_array, typename image_array,
typename feature_extractor typename feature_extractor,
typename box_generator
> >
void setup_hashed_features ( void setup_hashed_features (
scan_image_boxes<hashed_feature_image<feature_extractor, projection_hash> >& scanner, scan_image_boxes<hashed_feature_image<feature_extractor, projection_hash>,box_generator>& scanner,
const image_array& images, const image_array& images,
int bits, int bits,
unsigned long num_samples = 200000 unsigned long num_samples = 200000
......
...@@ -92,10 +92,11 @@ namespace dlib ...@@ -92,10 +92,11 @@ namespace dlib
template < template <
typename image_array, typename image_array,
typename feature_extractor typename feature_extractor,
typename box_generator
> >
void setup_hashed_features ( void setup_hashed_features (
scan_image_boxes<hashed_feature_image<feature_extractor, projection_hash> >& scanner, scan_image_boxes<hashed_feature_image<feature_extractor, projection_hash>,box_generator>& scanner,
const image_array& images, const image_array& images,
const feature_extractor& fe, const feature_extractor& fe,
int bits, int bits,
...@@ -126,10 +127,11 @@ namespace dlib ...@@ -126,10 +127,11 @@ namespace dlib
template < template <
typename image_array, typename image_array,
typename feature_extractor typename feature_extractor,
typename box_generator
> >
void setup_hashed_features ( void setup_hashed_features (
scan_image_boxes<hashed_feature_image<feature_extractor, projection_hash> >& scanner, scan_image_boxes<hashed_feature_image<feature_extractor, projection_hash>,box_generator>& scanner,
const image_array& images, const image_array& images,
int bits, int bits,
unsigned long num_samples = 200000 unsigned long num_samples = 200000
......
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