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

  /external/opencv3/modules/features2d/src/
akaze.cpp 67 , descriptor_size(_descriptor_size)
83 void setDescriptorSize(int dsize) { descriptor_size = dsize; }
84 int getDescriptorSize() const { return descriptor_size; }
113 if (descriptor_size == 0)
121 return (int)ceil(descriptor_size / 8.);
187 options.descriptor_size = descriptor_size;
222 fs << "descriptor_size" << descriptor_size; local
233 descriptor_size = (int)fn["descriptor_size"]
242 int descriptor_size; member in class:cv::AKAZE_Impl
    [all...]
  /external/opencv3/modules/features2d/src/kaze/
AKAZEConfig.h 31 , descriptor_size(0)
54 int descriptor_size; ///< Size of the descriptor in bits. 0->Full size member in struct:cv::AKAZEOptions
AKAZEFeatures.cpp 33 if (options_.descriptor_size > 0 && options_.descriptor >= AKAZE::DESCRIPTOR_MLDB_UPRIGHT) {
34 generateDescriptorSubsample(descriptorSamples_, descriptorBits_, options_.descriptor_size,
721 if (options_.descriptor_size == 0) {
727 desc = Mat::zeros((int)kpts.size(), (int)ceil(options_.descriptor_size / 8.), CV_8UC1);
745 if (options_.descriptor_size == 0)
753 if (options_.descriptor_size == 0)
    [all...]
  /external/opencv/cv/src/
cvsurf.cpp 272 int descriptor_size = params.extended ? 128 : 64; local
307 descriptor_size*CV_ELEM_SIZE(descriptor_data_type), storage );
  /external/v8/src/runtime/
runtime-object.cc 202 DESCRIPTOR_SIZE
222 Handle<FixedArray> elms = factory->NewFixedArray(DESCRIPTOR_SIZE);
    [all...]
  /external/opencv3/modules/cudaobjdetect/src/
hog.cpp 245 const int descriptor_size = static_cast<int>(getDescriptorSize());
251 CV_Assert( detector.cols == descriptor_size || detector.cols == descriptor_size + 1 );
270 free_coef_ = detector.cols > descriptor_size ? detector.at<float>(0, descriptor_size) : 0;
    [all...]
  /external/opencv3/modules/features2d/include/opencv2/
features2d.hpp 633 @param descriptor_size Size of the descriptor in bits. 0 -\> Full size
642 int descriptor_size = 0, int descriptor_channels = 3,
    [all...]
  /external/opencv3/modules/cudafeatures2d/src/
orb.cpp 76 const int DESCRIPTOR_SIZE = 32;
    [all...]
  /external/opencv3/modules/objdetect/src/
hog.cpp 132 size_t descriptor_size = getDescriptorSize(); local
133 free_coef = svmDetector.size() > descriptor_size ? svmDetector[descriptor_size] : 0;
    [all...]

Completed in 162 milliseconds