HomeSort by relevance Sort by last modified time
    Searched full:centers (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/ceres-solver/internal/ceres/
canonical_views_clustering.cc 51 // graph. centers will contain the vertices that are the identified
52 // as the canonical views/cluster centers, and membership is a map
60 vector<int>* centers,
66 const vector<int>& centers) const;
68 void ComputeClusterMembership(const vector<int>& centers,
84 vector<int>* centers,
88 cv.ComputeClustering(graph, options, centers, membership);
97 vector<int>* centers,
100 CHECK_NOTNULL(centers)->clear();
116 ComputeClusteringQualityDifference(*view, *centers);
    [all...]
canonical_views_clustering.h 92 // centers will contain the vertices that are the identified
93 // as the canonical views/cluster centers, and membership is a map
103 vector<int>* centers,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
CameraTests.java 33 * set the pointer address of checkerboard centers and radius. It also provides
46 /** Memory address of the color checker centers. */
111 * Sets the memory address of the checker centers and checker radius.
114 * the color checker centers
129 * centers and radius;
132 * centers and radius.
ColorCheckerTest.java 195 * checker centers and radius computed by the native test handler class
245 * Gets the memory address of the vector storing the color checker centers
252 * centers' coordinates
264 * centers' coordinates
CameraAnalyzerActivity.java 280 // address of the found color checker centers and radius to the
330 // Loads the memory address of the checker centers and radius
349 // Loads the memory address of the checker centers and radius
367 // Loads the memory address of the checker centers and radius
381 // Loads the memory address of the checker centers and radius
  /external/opencv/ml/src/
_ml.h 250 /* Generates a set of classes centers in quantity <num_of_clusters> that are generated as
252 <data> should have horizontal orientation. If <centers> != NULL, the function doesn't
253 allocate any memory and stores generated centers in <centers>, returns <centers>.
254 If <centers> == NULL, the function allocates memory and creates the matrice. Centers
259 CvMat* centers CV_DEFAULT(0));
318 (labels and/or centers and/or probs) back to the output arrays */
321 const CvMat* centers, CvMat* dst_centers
    [all...]
mlem.cpp 576 CvMat* centers = 0; local
595 CV_CALL( centers = cvCreateMat( nclusters, dims, CV_64FC1 ));
602 CV_CALL( cvConvert( centers0, centers ));
625 const double* c = (double*)(centers->data.ptr + k*centers->step);
658 CV_SWAP( centers, old_centers, temp );
659 cvZero( centers );
662 // update centers
667 double* c = (double*)(centers->data.ptr + k*centers->step)
    [all...]
ml_inner_functions.cpp 267 CvMat* centers = _centers; local
286 CV_CALL(centers = cvCreateMat (num_of_clusters, dim, CV_32FC1));
295 CV_CALL(centers = cvCreateMat (num_of_clusters, dim, CV_64FC1));
308 CV_CALL(cvGetCol (centers, &centers_comp, i));
314 if( (cvGetErrStatus () < 0) || (centers != _centers) )
315 cvReleaseMat (&centers);
317 return _centers ? _centers : centers;
    [all...]
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gles3jni.cpp 169 float centers[2][MAX_INSTANCES_PER_SIDE]; local
173 centers[d][i] = scene2clip[d] * (CELL_SIZE*(i + 0.5f) + offset);
179 // outer product of centers[0] and centers[1]
183 offsets[2*idx + major] = centers[0][i];
184 offsets[2*idx + minor] = centers[1][j];
  /external/webp/src/enc/
analysis.c 78 const int centers[NUM_MB_SEGMENTS],
81 int min = centers[0], max = centers[0];
86 if (min > centers[n]) min = centers[n];
87 if (max < centers[n]) max = centers[n];
93 const int alpha = 255 * (centers[n] - mid) / (max - min);
94 const int beta = 255 * (centers[n] - min) / (max - min);
146 int centers[NUM_MB_SEGMENTS] local
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebNSWindowExtras.h 32 // centers "visually", putting 1/3 of the remaining space above, and 2/3 below
  /external/valgrind/main/callgrind/
callgrind.h 84 /* Dump current state of cost centers, and zero them afterwards */
89 /* Dump current state of cost centers, and zero them afterwards.
97 /* Zero cost centers */
  /cts/apps/CtsVerifier/include/colorchecker/
testingimage.h 52 // coordinates including centers and radius.
  /development/samples/ApiDemos/res/layout/
table_layout_11.xml 46 <!-- Horizontally centers the content of the cell -->
  /external/chromium/chrome/browser/ui/gtk/
constrained_window_gtk.h 48 // centers the dialog. It is thus an order of magnitude simpler.
  /external/skia/legacy/src/core/
SkBitmapSampler.cpp 88 // turn pixel centers into the top-left of our filter-box
136 // turn pixel centers into the top-left of our filter-box
192 // turn pixel centers into the top-left of our filter-box
250 // turn pixel centers into the top-left of our filter-box
  /external/skia/src/core/
SkBitmapSampler.cpp 88 // turn pixel centers into the top-left of our filter-box
136 // turn pixel centers into the top-left of our filter-box
192 // turn pixel centers into the top-left of our filter-box
251 // turn pixel centers into the top-left of our filter-box
  /frameworks/base/core/tests/coretests/res/layout/
table_layout_horizontal_gravity.xml 39 <!-- Horizontally centers the content of the cell -->
  /external/opencv/cxcore/src/
cxutils.cpp 48 CvMat* centers = 0; local
94 CV_CALL( centers = cvCreateMat( cluster_count, dims, CV_64FC1 ));
98 // init centers
107 // computer centers
108 cvZero( centers );
115 double* c = (double*)(centers->data.ptr + k*centers->step);
140 double* c = (double*)(centers->data.ptr + k*centers->step);
178 double* c = (double*)(centers->data.ptr + k*centers->step)
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 872 CvSeq *nz, *centers; local
892 CV_CALL( centers = cvCreateSeq( CV_32SC1, sizeof(CvSeq), sizeof(int), storage ));
970 cvSeqPush(centers, &base);
974 center_count = centers->total;
979 cvCvtSeqToArray( centers, sort_buf );
982 cvClearSeq( centers );
983 cvSeqPushMulti( centers, sort_buf, center_count );
992 for( i = 0; i < centers->total; i++ )
994 int ofs = *(int*)cvGetSeqElem( centers, i );
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion12-expected-completion75.txt 84 android:layout_centerInParent : If true, centers this child horizontally and vertically within its parent. [boolean]
85 android:layout_centerHorizontal : If true, centers this child horizontally within its parent. [boolean]
86 android:layout_centerVertical : If true, centers this child vertically within its parent. [boolean]
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
FitCenterFrameLayout.java 25 * A simple layout that fits and centers each child view, maintaining aspect ratio.
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Blend.h 36 // This threshold determines the minimum separation between the image centers
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/
Blend.h 36 // This threshold determines the minimum separation between the image centers
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.h 36 // This threshold determines the minimum separation between the image centers

Completed in 2936 milliseconds

1 2 3 4