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

  /external/opencv3/modules/cudalegacy/src/cuda/
gmg.cu 76 __device__ float findFeature(const int color, const PtrStepi& colors, const PtrStepf& weights, const int x, const int y, const int nfeatures)
78 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height)
88 __device__ void normalizeHistogram(PtrStepf weights, const int x, const int y, const int nfeatures)
91 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height)
96 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height)
101 __device__ bool insertFeature(const int color, const float weight, PtrStepi colors, PtrStepf weights, const int x, const int y, int& nfeatures)
103 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height)
115 if (nfeatures == c_maxFeatures)
121 for (int i = 0, fy = y; i < nfeatures; ++i, fy += c_height)
137 colors(nfeatures * c_height + y, x) = color
    [all...]
  /external/opencv3/modules/features2d/src/
gftt.cpp 53 : nfeatures(_nfeatures), qualityLevel(_qualityLevel), minDistance(_minDistance),
58 void setMaxFeatures(int maxFeatures) { nfeatures = maxFeatures; }
59 int getMaxFeatures() const { return nfeatures; }
88 goodFeaturesToTrack( ugrayImage, corners, nfeatures, qualityLevel, minDistance, _mask,
97 goodFeaturesToTrack( grayImage, corners, nfeatures, qualityLevel, minDistance, _mask,
109 int nfeatures; member in class:cv::GFTTDetector_Impl
orb.cpp 658 nfeatures(_nfeatures), scaleFactor(_scaleFactor), nlevels(_nlevels),
663 void setMaxFeatures(int maxFeatures) { nfeatures = maxFeatures; }
664 int getMaxFeatures() const { return nfeatures; }
703 int nfeatures;
    [all...]
  /external/opencv3/modules/objdetect/src/
HaarStructs.h 57 int nFeatures;
cascadedetect_convert.cpp 201 int maxWeakCount = 0, nfeatures = (int)features.size(); local
244 for( i = 0; i < nfeatures; i++ )
cascadedetect.cpp 713 size_t fi, nfeatures = features->size(); local
715 optfeatures->resize(nfeatures);
717 for( fi = 0; fi < nfeatures; fi++ )
719 optfeatures_lbuf->resize(nfeatures);
721 for( fi = 0; fi < nfeatures; fi++ )
868 size_t fi, nfeatures = features->size(); local
870 optfeatures->resize(nfeatures);
872 for( fi = 0; fi < nfeatures; fi++ )
    [all...]
  /art/runtime/arch/
instruction_set_features_test.cc 53 << "\nFeatures from build: " << *instruction_set_features.get();
90 << "\nFeatures from build: " << *instruction_set_features.get();
110 << "\nFeatures from build: " << *instruction_set_features.get();
125 << "\nFeatures from build: " << *cpp_features.get();
144 << "\nFeatures from build: " << *instruction_set_features.get();
157 << "\nFeatures from build: " << *instruction_set_features.get();
  /external/opencv3/modules/features2d/misc/java/test/
ORBDescriptorExtractorTest.java 103 String truth = "<?xml version=\"1.0\"?>\n<opencv_storage>\n<name>Feature2D.ORB</name>\n<WTA_K>2</WTA_K>\n<edgeThreshold>31</edgeThreshold>\n<firstLevel>0</firstLevel>\n<nFeatures>500</nFeatures>\n<nLevels>8</nLevels>\n<patchSize>31</patchSize>\n<scaleFactor>1.2000000476837158e+00</scaleFactor>\n<scoreType>0</scoreType>\n</opencv_storage>\n";
SIFTDescriptorExtractorTest.java 90 String truth = "<?xml version=\"1.0\"?>\n<opencv_storage>\n<name>Feature2D.SIFT</name>\n<contrastThreshold>4.0000000000000001e-02</contrastThreshold>\n<edgeThreshold>10.</edgeThreshold>\n<nFeatures>0</nFeatures>\n<nOctaveLayers>3</nOctaveLayers>\n<sigma>1.6000000000000001e+00</sigma>\n</opencv_storage>\n";
  /external/skia/src/core/
SkUtilsArm.cpp 85 // '\nFeatures ' in our buffer.
86 const char features[] = "\nFeatures\t";
97 line += features_len; // Skip the "\nFeatures\t" prefix
  /external/opencv3/modules/cudafeatures2d/perf/
perf_features2d.cpp 108 const int nFeatures = GET_PARAM(1);
112 cv::Ptr<cv::cuda::ORB> d_orb = cv::cuda::ORB::create(nFeatures);
134 cv::Ptr<cv::ORB> orb = cv::ORB::create(nFeatures);
  /external/opencv3/modules/rsobjdetect/src/
innerloop.cpp 41 for( int i = 0; i < hf.nFeatures; i++ )
  /external/opencv3/modules/cudalegacy/src/
gmg.cpp 61 void update_gpu(PtrStepSzb frame, PtrStepb fgmask, PtrStepSzi colors, PtrStepf weights, PtrStepi nfeatures,
172 typedef void (*func_t)(PtrStepSzb frame, PtrStepb fgmask, PtrStepSzi colors, PtrStepf weights, PtrStepi nfeatures,
  /external/opencv3/modules/cudafeatures2d/src/
orb.cpp 341 ORB_Impl(int nfeatures,
479 ORB_Impl::ORB_Impl(int nFeatures,
489 nFeatures_(nFeatures),
517 n_features_per_level_[nLevels_ - 1] = nFeatures - sum_n_features;
    [all...]
  /external/opencv3/doc/py_tutorials/py_feature2d/py_orb/
py_orb.markdown 56 interface. It has a number of optional parameters. Most useful ones are nFeatures which denotes
  /external/opencv3/modules/cudafeatures2d/test/
test_features2d.cpp 130 int nFeatures;
143 nFeatures = GET_PARAM(1);
166 cv::cuda::ORB::create(nFeatures, scaleFactor, nLevels, edgeThreshold, firstLevel,
188 cv::Ptr<cv::ORB> orb_gold = cv::ORB::create(nFeatures, scaleFactor, nLevels, edgeThreshold, firstLevel, WTA_K, scoreType, patchSize);
  /external/opencv3/samples/python2/
plane_tracker.py 64 self.detector = cv2.ORB_create( nfeatures = 1000 )
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
matchers.hpp 125 OrbFeaturesFinder(Size _grid_size = Size(3,1), int nfeatures=1500, float scaleFactor=1.3f, int nlevels=5);
  /external/opencv3/modules/features2d/include/opencv2/
features2d.hpp 261 @param nfeatures The maximum number of features to retain.
282 (the score is written to KeyPoint::score and is used to retain best nfeatures features);
289 CV_WRAP static Ptr<ORB> create(int nfeatures=500, float scaleFactor=1.2f, int nlevels=8, int edgeThreshold=31,
    [all...]
  /external/opencv3/modules/cudafeatures2d/include/opencv2/
cudafeatures2d.hpp 469 static Ptr<ORB> create(int nfeatures=500,
  /external/llvm/utils/TableGen/
SubtargetEmitter.cpp     [all...]
  /external/opencv3/modules/ml/include/opencv2/
ml.hpp     [all...]

Completed in 1019 milliseconds