Home
last modified time | relevance | path

Searched refs:ElementType (Results 1 – 21 of 21) sorted by relevance

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/
H A Dflann.hpp111 typedef typename Distance::ElementType ElementType; typedef in cv::flann::GenericIndex
216 void knnSearch(const std::vector<ElementType>& query, std::vector<int>& indices,
220 int radiusSearch(const std::vector<ElementType>& query, std::vector<int>& indices,
253 CV_Assert(dataset.type() == CvType<ElementType>::type()); in GenericIndex()
255 …::cvflann::Matrix<ElementType> m_dataset((ElementType*)dataset.ptr<ElementType>(0), dataset.rows, … in GenericIndex()
271 void GenericIndex<Distance>::knnSearch(const std::vector<ElementType>& query, std::vector<int>& ind… in knnSearch()
273 ::cvflann::Matrix<ElementType> m_query((ElementType*)&query[0], 1, query.size()); in knnSearch()
286 CV_Assert(queries.type() == CvType<ElementType>::type()); in knnSearch()
288 …::cvflann::Matrix<ElementType> m_queries((ElementType*)queries.ptr<ElementType>(0), queries.rows, … in knnSearch()
304 int GenericIndex<Distance>::radiusSearch(const std::vector<ElementType>& query, std::vector<int>& i… in radiusSearch()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/flann/
H A Ddist.h108 typedef T ElementType;
141 typedef T ElementType;
206 typedef T ElementType;
263 typedef T ElementType;
327 typedef T ElementType;
384 typedef unsigned char ElementType;
421 typedef T ElementType;
480 typedef T ElementType;
539 typedef T ElementType;
594 typedef T ElementType;
[all …]
H A Dflann_base.hpp73 NNIndex<Distance>* load_saved_index(const Matrix<typename Distance::ElementType>& dataset, const cv… in load_saved_index()
75 typedef typename Distance::ElementType ElementType; in load_saved_index() typedef
82 if (header.data_type != Datatype<ElementType>::type()) { in load_saved_index()
105 typedef typename Distance::ElementType ElementType; typedef in cvflann::Index
108 …Index(const Matrix<ElementType>& features, const IndexParams& params, Distance distance = Distance… in Index()
216 …void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceType>& dis… in knnSearch()
230 …int radiusSearch(const Matrix<ElementType>& query, Matrix<int>& indices, Matrix<DistanceType>& dis… in radiusSearch()
238 …void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& se… in findNeighbors()
284 int hierarchicalClustering(const Matrix<typename Distance::ElementType>& points, Matrix<typename Di… in hierarchicalClustering()
H A Dlsh_index.h81 typedef typename Distance::ElementType ElementType; typedef
89 LshIndex(const Matrix<ElementType>& input_data, const IndexParams& params = LshIndexParams(),
114 lsh::LshTable<ElementType>& table = tables_[i]; in buildIndex()
115 table = lsh::LshTable<ElementType>(feature_size_, key_size_); in buildIndex()
190 …virtual void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceTy… in knnSearch()
220 …void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& /*… in findNeighbors()
263 …void getNeighbors(const ElementType* vec, bool /*do_radius*/, float radius, bool do_k, unsigned in… in getNeighbors()
270 … typename std::vector<lsh::LshTable<ElementType> >::const_iterator table = tables_.begin(); in getNeighbors()
271 … typename std::vector<lsh::LshTable<ElementType> >::const_iterator table_end = tables_.end(); in getNeighbors()
308 … typename std::vector<lsh::LshTable<ElementType> >::const_iterator table = tables_.begin(); in getNeighbors()
[all …]
H A Dkdtree_single_index.h73 typedef typename Distance::ElementType ElementType; typedef
84 …KDTreeSingleIndex(const Matrix<ElementType>& inputData, const IndexParams& params = KDTreeSingleIn…
124 data_ = cvflann::Matrix<ElementType>(new ElementType[size_*dim_], size_, dim_); in buildIndex()
213 …void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceType>& dis… in knnSearch()
242 …void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& se… in findNeighbors()
390 void computeMinMax(int* ind, int count, int dim, ElementType& min_elem, ElementType& max_elem) in computeMinMax()
395 ElementType val = dataset_[ind[i]][dim]; in computeMinMax()
404 ElementType max_span = bbox[0].high-bbox[0].low; in middleSplit()
408 ElementType span = bbox[i].high-bbox[i].low; in middleSplit()
417 ElementType min_elem, max_elem; in middleSplit()
[all …]
H A Dlinear_index.h53 typedef typename Distance::ElementType ElementType; typedef
57 … LinearIndex(const Matrix<ElementType>& inputData, const IndexParams& params = LinearIndexParams(),
106 …void findNeighbors(ResultSet<DistanceType>& resultSet, const ElementType* vec, const SearchParams&… in findNeighbors()
108 ElementType* data = dataset_.data; in findNeighbors()
122 const Matrix<ElementType> dataset_;
H A Dindex_testing.h64 …teDistanceRaport(const Matrix<typename Distance::ElementType>& inputData, typename Distance::Eleme… in computeDistanceRaport()
86 …ith_ground_truth(NNIndex<Distance>& index, const Matrix<typename Distance::ElementType>& inputData, in search_with_ground_truth()
87 …const Matrix<typename Distance::ElementType>& testData, const Matrix<int>& matches, int nn, int ch… in search_with_ground_truth()
137 float test_index_checks(NNIndex<Distance>& index, const Matrix<typename Distance::ElementType>& inp…
138 … const Matrix<typename Distance::ElementType>& testData, const Matrix<int>& matches,
154 float test_index_precision(NNIndex<Distance>& index, const Matrix<typename Distance::ElementType>& …
155 … const Matrix<typename Distance::ElementType>& testData, const Matrix<int>& matches,
227 void test_index_precisions(NNIndex<Distance>& index, const Matrix<typename Distance::ElementType>& …
228 … const Matrix<typename Distance::ElementType>& testData, const Matrix<int>& matches,
H A Dkdtree_index.h73 typedef typename Distance::ElementType ElementType; typedef
84 … KDTreeIndex(const Matrix<ElementType>& inputData, const IndexParams& params = KDTreeIndexParams(),
204 …void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& se… in findNeighbors()
321 ElementType* v = dataset_[ind[j]]; in meanSplit()
332 ElementType* v = dataset_[ind[j]]; in meanSplit()
424 void getExactNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, float epsError) in getExactNeighbors()
442 …void getNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, int maxCheck, float eps… in getNeighbors()
472 …void searchLevel(ResultSet<DistanceType>& result_set, const ElementType* vec, NodePtr node, Distan… in searchLevel()
498 ElementType val = vec[node->divfeat]; in searchLevel()
524 …void searchLevelExact(ResultSet<DistanceType>& result_set, const ElementType* vec, const NodePtr n… in searchLevelExact()
[all …]
H A Dnn_index.h48 typedef typename Distance::ElementType ElementType; typedef
68 …virtual void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceTy… in knnSearch()
102 …virtual int radiusSearch(const Matrix<ElementType>& query, Matrix<int>& indices, Matrix<DistanceTy… in radiusSearch()
172 …virtual void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchPa…
H A Dkmeans_index.h83 typedef typename Distance::ElementType ElementType; typedef
277 KMeansDistanceComputer(Distance _distance, const Matrix<ElementType>& _dataset, in KMeansDistanceComputer()
326 const Matrix<ElementType>& dataset;
346 … KMeansIndex(const Matrix<ElementType>& inputData, const IndexParams& params = KMeansIndexParams(),
498 …void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& se… in findNeighbors()
679 ElementType* vec = dataset_[indices[i]]; in computeNodeStatistics()
683 variance += distance_(vec, ZeroIterator<ElementType>(), veclen_); in computeNodeStatistics()
689 variance -= distance_(mean, ZeroIterator<ElementType>(), veclen_); in computeNodeStatistics()
744 ElementType* vec = dataset_[centers_idx[i]]; in computeClustering()
790 ElementType* vec = dataset_[indices[i]]; in computeClustering()
[all …]
H A Dground_truth.h42 void find_nearest(const Matrix<typename Distance::ElementType>& dataset, typename Distance::Element…
83 …ound_truth(const Matrix<typename Distance::ElementType>& dataset, const Matrix<typename Distance::
H A Dcomposite_index.h74 typedef typename Distance::ElementType ElementType; typedef
84 …CompositeIndex(const Matrix<ElementType>& inputData, const IndexParams& params = CompositeIndexPar…
175 …void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& se… in findNeighbors()
H A Dautotuned_index.h51 NNIndex<Distance>* create_index_by_type(const Matrix<typename Distance::ElementType>& dataset, cons…
75 typedef typename Distance::ElementType ElementType; typedef
78 …AutotunedIndex(const Matrix<ElementType>& inputData, const IndexParams& params = AutotunedIndexPar…
154 …virtual void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchPa… in findNeighbors()
504 Matrix<ElementType> testDataset = random_sample(dataset_, samples); in estimateSearchParams()
566 Matrix<ElementType> sampledDataset_;
567 Matrix<ElementType> testDataset_;
575 const Matrix<ElementType> dataset_;
H A Dall_indices.h52 …static NNIndex<Distance>* create(const Matrix<typename Distance::ElementType>& dataset, const Inde… in create()
93 …static NNIndex<Distance>* create(const Matrix<typename Distance::ElementType>& dataset, const Inde…
122 …static NNIndex<Distance>* create(const Matrix<typename Distance::ElementType>& dataset, const Inde…
146 NNIndex<Distance>* create_index_by_type(const Matrix<typename Distance::ElementType>& dataset, cons…
H A Dhierarchical_clustering_index.h83 typedef typename Distance::ElementType ElementType; typedef
357 …HierarchicalClusteringIndex(const Matrix<ElementType>& inputData, const IndexParams& index_params …
547 …void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& se… in findNeighbors()
656 ElementType* point = dataset[dsindices[i]]; in computeLabels()
746 …void findNN(NodePtr node, ResultSet<DistanceType>& result, const ElementType* vec, int& checks, in… in findNN()
789 const Matrix<ElementType> dataset;
H A Dlsh_table.h129 template<typename ElementType>
171 void add(unsigned int value, const ElementType* feature) in add()
198 void add(Matrix<ElementType> dataset) in add()
242 size_t getKey(const ElementType* /*feature*/) const in getKey() argument
H A Dsaving.h93 header.data_type = Datatype<typename Distance::ElementType>::type();
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dspan23 template <class ElementType, ptrdiff_t Extent = dynamic_extent>
27 template <class ElementType, ptrdiff_t Extent>
29 …(static_cast<ptrdiff_t>(sizeof(ElementType)) * Extent))> as_bytes(span<ElementType, Extent> s) noe…
31 template <class ElementType, ptrdiff_t Extent>
33 …(static_cast<ptrdiff_t>(sizeof(ElementType)) * Extent))> as_writable_bytes(span<ElementType, Exten…
37 template <class ElementType, ptrdiff_t Extent = dynamic_extent>
41 using element_type = ElementType;
42 using value_type = remove_cv_t<ElementType>;
181 // remove_pointer_t<decltype(data(cont))>(*)[] is convertible to ElementType(*)[]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dspan23 template <class ElementType, ptrdiff_t Extent = dynamic_extent>
27 template <class ElementType, ptrdiff_t Extent>
29 …(static_cast<ptrdiff_t>(sizeof(ElementType)) * Extent))> as_bytes(span<ElementType, Extent> s) noe…
31 template <class ElementType, ptrdiff_t Extent>
33 …(static_cast<ptrdiff_t>(sizeof(ElementType)) * Extent))> as_writable_bytes(span<ElementType, Exten…
37 template <class ElementType, ptrdiff_t Extent = dynamic_extent>
41 using element_type = ElementType;
42 using value_type = remove_cv_t<ElementType>;
181 // remove_pointer_t<decltype(data(cont))>(*)[] is convertible to ElementType(*)[]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativepolylinemapitem.cpp577 QVector<QPainterPath::ElementType> &outTypes) in clipSegmentToRect()
641 const QVector<QPainterPath::ElementType> &types, in clipPathToRect()
644 QVector<QPainterPath::ElementType> &outTypes) in clipPathToRect()
690 QVector<QPainterPath::ElementType> types; in updateScreenPoints()
H A Dqdeclarativepolylinemapitem_p_p.h97 QVector<QPainterPath::ElementType> srcPointTypes_;