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

  /bionic/libc/kernel/uapi/asm-x86/asm/
kvm_perf.h 21 #include <asm/svm.h>
  /external/kernel-headers/original/uapi/asm-x86/asm/
kvm_perf.h 4 #include <asm/svm.h>
  /external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_svm/
introduction_to_svm.cpp 27 // Train the SVM
29 Ptr<SVM> svm = SVM::create(); local
30 svm->setType(SVM::C_SVC);
31 svm->setKernel(SVM::LINEAR);
32 svm->setTermCriteria(TermCriteria(TermCriteria::MAX_ITER, 100, 1e-6));
35 svm->train(trainingDataMat, ROW_SAMPLE, labelsMat)
    [all...]
  /external/opencv3/modules/ml/test/
test_svmtrainauto.cpp 46 using cv::ml::SVM;
73 cv::Ptr<SVM> svm = SVM::create(); local
74 svm->trainAuto( data, 10 ); // 2-fold cross validation.
78 float result0 = svm->predict( test_point0 );
81 float result1 = svm->predict( test_point1 );
  /external/opencv3/samples/cpp/tutorial_code/ml/non_linear_svms/
non_linear_svms.cpp 78 //------------------------ 3. Train the svm ----------------------------------------------------
81 Ptr<SVM> svm = SVM::create(); local
82 svm->setType(SVM::C_SVC);
83 svm->setC(0.1);
84 svm->setKernel(SVM::LINEAR);
85 svm->setTermCriteria(TermCriteria(TermCriteria::MAX_ITER, (int)1e7, 1e-6))
    [all...]
  /external/opencv3/samples/cpp/
train_HOG.cpp 14 void get_svm_detector(const Ptr<SVM>& svm, vector< float > & hog_detector );
24 void get_svm_detector(const Ptr<SVM>& svm, vector< float > & hog_detector )
27 Mat sv = svm->getSupportVectors();
31 double rho = svm->getDecisionFunction(0, alpha, svidx);
321 Ptr<SVM> svm = SVM::create(); local
322 /* Default values to train SVM */
357 Ptr<SVM> svm; local
    [all...]
points_classifier.cpp 7 #define _OCL_SVM_ 1 // select whether using ocl::svm method or not, default is using
127 Ptr<SVM> svm = SVM::create(); local
128 svm->setType(SVM::C_SVC);
129 svm->setKernel(SVM::POLY); //SVM::LINEAR;
130 svm->setDegree(0.5)
    [all...]
  /external/opencv3/modules/core/src/
ocl.cpp 2401 namespace svm { namespace in namespace:cv::ocl
2893 namespace svm { namespace in namespace:cv::ocl
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/opencl/
opencl_svm.hpp 18 namespace cv { namespace ocl { namespace svm { namespace in namespace:cv::ocl
77 }}} //namespace cv::ocl::svm
  /external/javasqlite/src/main/native/
sqlite_jni.c 2893 void *svm = 0; local
3017 void *svm = 0; local
3202 void *svm = 0; local
3482 void *svm = 0; local
3540 void *svm = 0; local
    [all...]
  /external/opencv3/modules/ml/src/
svm.cpp 105 // SVM training parameters
121 svmType = SVM::C_SVC;
122 kernelType = SVM::RBF;
151 /////////////////////////////////////// SVM kernel ///////////////////////////////////////
152 class SVMKernelImpl : public SVM::Kernel
307 case SVM::LINEAR:
310 case SVM::RBF:
313 case SVM::POLY:
316 case SVM::SIGMOID:
319 case SVM::CHI2
    [all...]
  /external/autotest/server/
kvm.py 115 elif cpu_flags.find('svm') != -1:
266 extentions (vmx for intel or svm for amd), in
  /external/opencv/ml/src/
mlsvm.cpp 168 // SVM training parameters
188 /////////////////////////////////////// SVM kernel ///////////////////////////////////////
    [all...]
  /external/opencv3/
Android.mk 789 modules/ml/src/svm.cpp \
    [all...]
  /external/skia/third_party/yasm/config/android/
Makefile     [all...]
  /external/skia/third_party/yasm/config/chromeos/
Makefile     [all...]
  /external/skia/third_party/yasm/config/ios/
Makefile     [all...]
  /external/skia/third_party/yasm/config/linux/
Makefile     [all...]
  /external/skia/third_party/yasm/config/mac/
Makefile     [all...]
  /external/skia/third_party/yasm/config/openbsd/
Makefile     [all...]
  /external/skia/third_party/yasm/config/win/
Makefile     [all...]

Completed in 1180 milliseconds