HomeSort by relevance Sort by last modified time
    Searched refs:predict (Results 51 - 75 of 137) sorted by null

1 23 4 5 6

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 55 ; * OMX_VIDEO_HORIZONTAL predict horizontally
56 ; * OMX_VIDEO_VERTICAL predict vertically
  /external/libvpx/libvpx/vp8/common/x86/
idctllm_sse2.asm 70 ; Add to predict buffer
311 ; Load up predict blocks
385 ; Load up predict blocks
399 ; Predict buffer needs to be expanded from bytes to words
405 ; Add to predict buffer
648 ; Load up predict blocks
  /external/opencv3/3rdparty/libwebp/dsp/
lossless.c 551 uint32_t predict; local
554 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
556 predict = upper_row[col]; // Top.
558 predict = pred_func(current_row[col - 1], upper_row + col);
560 predict_diff = VP8LSubPixels(current_row[col], predict);
600 uint32_t predict; local
602 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
604 predict = upper_row[col]; // Top.
606 predict = pred_func(current_row[col - 1], upper_row + col);
608 argb[pix] = VP8LSubPixels(current_row[col], predict);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
idctllm_sse2.asm 70 ; Add to predict buffer
311 ; Load up predict blocks
385 ; Load up predict blocks
399 ; Predict buffer needs to be expanded from bytes to words
405 ; Add to predict buffer
648 ; Load up predict blocks
  /external/opencv/ml/include/
ml.h 250 virtual float predict( const CvMat* _samples, CvMat* results=0 ) const;
514 virtual float predict( const CvMat* _sample ) const;
604 virtual float predict( const CvMat* sample, CvMat* probs ) const;
845 virtual CvDTreeNode* predict( const CvMat* _sample, const CvMat* _missing_data_mask=0,
    [all...]
  /external/opencv3/apps/traincascade/
cascadeclassifier.cpp 288 int CvCascadeClassifier::predict( int sampleIdx ) function in class:CvCascadeClassifier
294 if ( (*it)->predict( sampleIdx ) == 0.f )
335 if( predict( i ) == 1.0F )
boost.cpp 954 CvDTreeNode* CvCascadeBoostTree::predict( int sampleIdx ) const function in class:CvCascadeBoostTree
1403 float CvCascadeBoost::predict( int sampleIdx, bool returnSum ) const function in class:CvCascadeBoost
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interpreter.java 117 * predict which alternative will succeed. This is exactly what the
235 // decision point, must predict and jump to alt
245 int predictedAlt = predict(dfa);
395 public int predict(DFA dfa) { method in class:Interpreter
402 System.out.println("DFA.predict("+s.getStateNumber()+", "+
431 // woohoo! We know which alt to predict
  /external/opencv3/modules/ml/include/opencv2/
ml.hpp 293 /** Predict options */
338 The method uses StatModel::predict to compute the error. For regression models the error is
349 CV_WRAP virtual float predict( InputArray samples, OutputArray results=noArray(), int flags=0 ) const = 0;
401 /** Default number of neighbors to use in predict method. */
    [all...]
  /external/opencv3/modules/ml/src/
boost.cpp 475 float predict( InputArray samples, OutputArray results, int flags ) const function in class:cv::BoostImpl
477 return impl.predict(samples, results, flags);
rtrees.cpp 385 float predict( InputArray samples, OutputArray results, int flags ) const function in class:cv::ml::RTreesImpl
387 return impl.predict(samples, results, flags);
lr.cpp 99 virtual float predict(InputArray samples, OutputArray results, int) const;
224 float LogisticRegressionImpl::predict(InputArray samples, OutputArray results, int) const function in class:cv::ml::LogisticRegressionImpl
273 // if greater than 0.5, predict class 0 or predict class 1
precomp.hpp 327 virtual float predict( InputArray inputs, OutputArray outputs, int flags ) const;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 55 ; * OMX_VIDEO_HORIZONTAL predict horizontally
56 ; * OMX_VIDEO_VERTICAL predict vertically
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 512 alt4 = dfa4.predict(input);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 512 alt4 = dfa4.predict(input);
SimpleCLexer.m 838 alt4 = [dfa4 predict:input];
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/regression/
SimpleRegression.java 260 * <code> predict(x) = intercept + slope * x </code></p>
272 public double predict(double x) { method in class:SimpleRegression
  /external/opencv3/samples/python2/
digits_adjust.py 48 resp = model.predict(test_samples)
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
OpenWnnEngineEN.java 251 /** @see jp.co.omronsoft.openwnn.WnnEngine#predict */
252 public int predict(ComposingText text, int minLen, int maxLen) { method in class:OpenWnnEngineEN
  /external/webp/src/enc/
vp8l.c 74 uint32_t predict = 0x00000000; local
80 const uint32_t cur_score = PaletteColorDistance(palette[k], predict);
87 predict = palette[i];
98 uint32_t predict = 0x000000; local
102 const uint32_t diff = VP8LSubPixels(palette[i], predict);
115 predict = palette[i];
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableLexer.m 613 alt4 = [dfa4 predict:input];
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dfa.rb 95 For more information on the prediction algorithm, check out the #predict method
171 def predict( input ) method in class:ANTLR3
237 def predict( input ) method in class:ANTLR3
  /external/opencv3/samples/cpp/
letter_recog.cpp 131 float r = model->predict( sample );
314 float s = model->predict( temp_sample, noArray(), StatModel::RAW_OUTPUT );
  /external/opencv3/modules/ml/
precomp.hpp 327 virtual float predict( InputArray inputs, OutputArray outputs, int flags ) const;

Completed in 2363 milliseconds

1 23 4 5 6