mirror of https://github.com/davisking/dlib.git
Added missing template arguments.
This commit is contained in:
parent
b22e9f2fc8
commit
a41e00d823
|
@ -107,10 +107,11 @@ namespace dlib
|
|||
|
||||
template <
|
||||
typename image_array,
|
||||
typename feature_extractor
|
||||
typename feature_extractor,
|
||||
typename box_generator
|
||||
>
|
||||
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 feature_extractor& fe,
|
||||
int bits,
|
||||
|
@ -148,10 +149,11 @@ namespace dlib
|
|||
|
||||
template <
|
||||
typename image_array,
|
||||
typename feature_extractor
|
||||
typename feature_extractor,
|
||||
typename box_generator
|
||||
>
|
||||
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,
|
||||
int bits,
|
||||
unsigned long num_samples = 200000
|
||||
|
|
|
@ -92,10 +92,11 @@ namespace dlib
|
|||
|
||||
template <
|
||||
typename image_array,
|
||||
typename feature_extractor
|
||||
typename feature_extractor,
|
||||
typename box_generator
|
||||
>
|
||||
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 feature_extractor& fe,
|
||||
int bits,
|
||||
|
@ -126,10 +127,11 @@ namespace dlib
|
|||
|
||||
template <
|
||||
typename image_array,
|
||||
typename feature_extractor
|
||||
typename feature_extractor,
|
||||
typename box_generator
|
||||
>
|
||||
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,
|
||||
int bits,
|
||||
unsigned long num_samples = 200000
|
||||
|
|
Loading…
Reference in New Issue