HomeSort by relevance Sort by last modified time
    Searched full:num_features (Results 1 - 21 of 21) sorted by null

  /external/opencv3/modules/ml/src/
testset.cpp 59 void createConcentricSpheresTestSet( int num_samples, int num_features, int num_classes,
65 if( num_features < 1 )
66 CV_Error( CV_StsBadArg, "num_features parameter must be positive" );
73 _samples.create( num_samples, num_features, CV_32F );
78 Mat mean = Mat::zeros(1, num_features, CV_32F);
79 Mat cov = Mat::eye(num_features, num_features, CV_32F);
  /external/opencv/ml/src/
mltestset.cpp 61 int num_features,
90 if( num_features < 1 )
91 CV_ERROR( CV_StsBadArg, "num_features parameter must be positive" );
105 CV_CALL( *samples = cvCreateMat( num_samples, num_features, CV_32FC1 ) );
107 CV_CALL( mean = cvCreateMat( 1, num_features, CV_32FC1 ) );
109 CV_CALL( cov = cvCreateMat( num_features, num_features, CV_32FC1 ) );
  /external/harfbuzz_ng/src/
hb-shape.h 63 unsigned int num_features);
69 unsigned int num_features,
main.cc 140 int num_features = langsys.get_feature_count (); local
141 printf (" %d feature(s) found in language system\n", num_features);
142 for (int n_feature = 0; n_feature < num_features; n_feature++) {
143 printf (" Feature index %2d of %2d: %d\n", n_feature, num_features,
149 int num_features = g.get_feature_count (); local
150 printf (" %d feature(s) found in table\n", num_features);
151 for (int n_feature = 0; n_feature < num_features; n_feature++) {
154 printf (" Feature %2d of %2d: %c%c%c%c\n", n_feature, num_features,
hb-shape-plan.cc 52 "num_features=%d shaper_list=%p",
119 "face=%p num_features=%d shaper_list=%p",
275 * @features: (array length=num_features):
276 * @num_features:
289 unsigned int num_features)
292 "num_features=%d shaper_func=%p",
293 num_features,
312 _hb_##shaper##_shape (shape_plan, font, buffer, features, num_features); \
413 "face=%p num_features=%d shaper_list=%p",
hb-shape.cc 355 * @features: (array length=num_features) (allow-none): an array of user
357 * @num_features: the length of @features array
373 unsigned int num_features,
376 hb_shape_plan_t *shape_plan = hb_shape_plan_create_cached (font->face, &buffer->props, features, num_features, shaper_list);
377 hb_bool_t res = hb_shape_plan_execute (shape_plan, font, buffer, features, num_features);
389 * @features: (array length=num_features) (allow-none): an array of user
391 * @num_features: the length of @features array
405 unsigned int num_features)
407 hb_shape_full (font, buffer, features, num_features, NULL);
hb-ot-shape.h 43 unsigned int num_features,
hb-shape-plan.h 81 unsigned int num_features);
hb-fallback-shape.cc 96 unsigned int num_features HB_UNUSED)
hb-directwrite.cc 598 unsigned int num_features)
661 // if (num_features)
717 singleFeatures.featureCount = num_features;
718 if (num_features)
721 malloc (sizeof (DWRITE_FONT_FEATURE) * num_features);
722 for (unsigned int i = 0; i < num_features; ++i)
965 if (num_features)
hb-uniscribe.cc 611 unsigned int num_features)
623 if (num_features)
627 for (unsigned int i = 0; i < num_features; i++)
656 feature.order = num_features + 1;
734 num_features = 0;
781 if (num_features)
860 if (num_features)
hb-shaper-private.hh 36 unsigned int num_features);
hb-coretext.cc 498 unsigned int num_features)
531 if (num_features)
535 for (unsigned int i = 0; i < num_features; i++)
572 feature.order = num_features + 1;
669 num_features = 0;
796 if (num_features)
    [all...]
hb-ot-layout.cc 337 unsigned int num_features = g.get_feature_count (); local
338 for (unsigned int i = 0; i < num_features; i++)
475 unsigned int num_features = l.get_feature_count (); local
476 for (unsigned int i = 0; i < num_features; i++) {
864 unsigned int num_features = gpos.get_feature_count (); local
865 for (unsigned int i = 0; i < num_features; i++)
hb-graphite2.cc 227 unsigned int num_features)
238 for (unsigned int i = 0; i < num_features; i++)
hb-ot-shape.cc 789 unsigned int num_features)
791 hb_ot_shape_context_t c = {HB_SHAPER_DATA_GET (shape_plan), font, font->face, buffer, features, num_features};
842 unsigned int num_features,
849 features, num_features, shapers);
  /external/harfbuzz_ng/util/
options.hh 185 num_features = 0;
248 hb_bool_t res = hb_shape_full (font, buffer, features, num_features, shapers);
261 hb_ot_shape_glyphs_closure (font, buffer, features, num_features, glyphs);
275 unsigned int num_features; member in struct:shape_options_t
options.cc 226 shape_opts->num_features = 0;
236 shape_opts->num_features++;
242 shape_opts->features = (hb_feature_t *) calloc (shape_opts->num_features, sizeof (*shape_opts->features));
246 shape_opts->num_features = 0;
249 if (hb_feature_from_string (p, end ? end - p : -1, &shape_opts->features[shape_opts->num_features]))
250 shape_opts->num_features++;
  /external/opencv3/modules/flann/include/opencv2/
flann.hpp 117 num_features x feature_dimensionality and the data type of the elements in the matrix must
  /external/opencv/ml/include/
ml.h     [all...]
  /external/opencv3/apps/traincascade/
old_ml.hpp     [all...]

Completed in 364 milliseconds