Home
last modified time | relevance | path

Searched refs:features_ (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/vad/
Dvoice_activity_detector.cc58 audio_processing_.ExtractFeatures(resampled_ptr, length, &features_); in ProcessChunk()
60 chunkwise_voice_probabilities_.resize(features_.num_frames); in ProcessChunk()
61 chunkwise_rms_.resize(features_.num_frames); in ProcessChunk()
62 std::copy(features_.rms, features_.rms + chunkwise_rms_.size(), in ProcessChunk()
64 if (features_.num_frames > 0) { in ProcessChunk()
65 if (features_.silence) { in ProcessChunk()
78 features_, &chunkwise_voice_probabilities_[0]), in ProcessChunk()
Dvoice_activity_detector.h65 AudioFeatures features_; variable
/external/opencv3/modules/stitching/src/
Dstitcher.cpp393 features_.resize(imgs_.size()); in matchImages()
430 (*features_finder_)(img, features_[i]); in matchImages()
440 (*features_finder_)(img, features_[i], rois); in matchImages()
442 features_[i].img_idx = (int)i; in matchImages()
443 LOGLN("Features in image #" << i+1 << ": " << features_[i].keypoints.size()); in matchImages()
460 (*features_matcher_)(features_, pairwise_matches_, matching_mask_); in matchImages()
465 indices_ = detail::leaveBiggestComponent(features_, pairwise_matches_, (float)conf_thresh_); in matchImages()
492 if (!estimator(features_, pairwise_matches_, cameras_)) in estimateCameraParams()
504 if (!(*bundle_adjuster_)(features_, pairwise_matches_, cameras_)) in estimateCameraParams()
Dmotion_estimators.cpp186 features_ = &features[0]; in estimate()
363 const ImageFeatures& features1 = features_[i]; in calcError()
364 const ImageFeatures& features2 = features_[j]; in calcError()
532 const ImageFeatures& features1 = features_[i]; in calcError()
533 const ImageFeatures& features2 = features_[j]; in calcError()
/external/jsoncpp/src/lib_json/
Djson_reader.cpp81 lastValue_(), commentsBefore_(), features_(Features::all()), in Reader()
86 lastValue_(), commentsBefore_(), features_(features), collectComments_() { in Reader()
114 if (!features_.allowComments_) { in parse()
135 if (features_.strictRoot_) { in parse()
200 if (features_.allowDroppedNullPlaceholders_) { in readValue()
225 if (features_.allowComments_) { in skipCommentTokens()
423 } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_) { in readObject()
/external/v8/src/compiler/
Dinstruction-selector.h120 return features_.Contains(feature); in IsSupported()
266 Features features_; variable
Dinstruction-selector.cc31 features_(features), in InstructionSelector()
/external/jsoncpp/include/json/
Dreader.h240 Features features_; variable
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmotion_estimators.hpp181 const ImageFeatures *features_; member in cv::detail::BundleAdjusterBase
/external/opencv3/modules/stitching/include/opencv2/
Dstitching.hpp240 std::vector<detail::ImageFeatures> features_; member in cv::Stitcher