Added missing template arguments.

This commit is contained in:
Davis King 2013-03-30 17:12:34 -04:00
parent b22e9f2fc8
commit a41e00d823
2 changed files with 12 additions and 8 deletions

View File

@ -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
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

View File

@ -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
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