/external/opencv/cv/src/ |
cvcalibinit.cpp | 104 struct CvCBCorner* neighbors[4]; // Neighbor corners member in struct:CvCBCorner 113 int count; // Number of quad neighbors 116 bool ordered; // true if corners/neighbors are ordered counter-clockwise 118 // neighbors and corners are synced, i.e., neighbor 0 shares corner 0 120 struct CvCBQuad *neighbors[4]; // Pointers of quad neighbors member in struct:CvCBQuad 366 // Find quad's neighbors 597 CvCBQuad *neighbor = q->neighbors[i]; 691 { // ok, look at neighbors 707 CvCBQuad *neighbor = quads[i]->neighbors[j] [all...] |
cvsnakes.cpp | 82 int neighbors = win.height * win.width; local 162 Econt = (float *) cvAlloc( neighbors * sizeof( float )); 163 Ecurv = (float *) cvAlloc( neighbors * sizeof( float )); 164 Eimg = (float *) cvAlloc( neighbors * sizeof( float )); 165 E = (float *) cvAlloc( neighbors * sizeof( float )); 238 for( k = 0; k < neighbors; k++ ) 276 for( k = 0; k < neighbors; k++ ) 341 for( k = 0; k < neighbors; k++ ) 360 /* Find Minimize point in the neighbors */ 361 for( k = 0; k < neighbors; k++ [all...] |
mycvHaarDetectObjects.cpp | [all...] |
cvhaar.cpp | [all...] |
/external/opencv/ml/src/ |
mlknearest.cpp | 44 * K-Nearest Neighbors Classifier * 47 // k Nearest Neighbors 151 float* neighbor_responses, const float** neighbors, float* dist ) const 193 nn = neighbors ? neighbors + (start + i)*k : 0; 354 "The distances from the neighbors (if present) must be floating-point matrix of <num_samples> x <k> size" );
|
/external/opencv/cv/include/ |
cvtypes.h | 378 int neighbors; member in struct:CvAvgComp
|
/packages/apps/Settings/src/com/android/settings/widget/ |
ChartSweepView.java | 154 public void setNeighbors(ChartSweepView... neighbors) { 155 mNeighbors = neighbors;
|
/external/libvpx/vp8/encoder/ |
mcomp.c | 787 MV neighbors[8] = { { -1, -1}, {0, -1}, {1, -1}, { -1, 0}, {1, 0}, { -1, 1}, {0, 1}, {1, 1} } ; local 874 // check 8 1 away neighbors 881 int nr = tr + neighbors[i].row, nc = tc + neighbors[i].col; [all...] |
/external/opencv/ml/include/ |
ml.h | 274 // k Nearest Neighbors 290 const float** neighbors=0, CvMat* neighbor_responses=0, CvMat* dist=0 ) const; 305 float* neighbor_responses, const float** neighbors, float* dist ) const; [all...] |