HomeSort by relevance Sort by last modified time
    Searched defs:coi (Results 1 - 24 of 24) sorted by null

  /external/opencv/cv/src/
cvsamplers.cpp 58 int i, coi = 0, pix_size; local
63 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
65 if( coi != 0 )
    [all...]
cvmoments.cpp 254 ( const srctype* img, int step, CvSize size, int cn, int coi, double *moments ) \
262 if( coi ) \
263 img += coi - 1; \
379 int coi = 0; local
410 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
433 if( cn > 1 && coi == 0 )
492 mat->step, cur_tile_size, cn, coi, tiles + k*10 ));
mycvHaarDetectObjects.cpp 656 CV_ERROR( CV_BadCOI, "COI is not supported" );
897 int npass = 2, coi; local
908 CV_CALL( img = cvGetMat( img, &stub, &coi ));
909 if( coi )
910 CV_ERROR( CV_BadCOI, "COI is not supported" );
    [all...]
cvhaar.cpp 457 CV_ERROR( CV_BadCOI, "COI is not supported" );
878 int npass = 2, coi; local
889 CV_CALL( img = cvGetMat( img, &stub, &coi ));
890 if( coi )
891 CV_ERROR( CV_BadCOI, "COI is not supported" );
    [all...]
  /external/opencv/cxcore/include/
cxcore.hpp 148 int coi() const { return !image || !image->roi ? 0 : image->roi->coi; } function in class:CvImage
152 void set_coi(int coi) { cvSetImageCOI(image,coi); }
cxtypes.h 404 int coi; /* 0 - no COI (all channels are selected), 1 - 0th channel is selected ...*/ member in struct:_IplROI
861 CV_INLINE IplROI cvRectToROI( CvRect rect, int coi )
868 roi.coi = coi;
    [all...]
  /external/opencv/cxcore/src/
cxmean.cpp 297 int coi, double* mean ) \
300 src += coi - 1; \
329 int coi, double* mean ) \
332 src += coi - 1; \
411 int type, coi = 0; local
424 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
448 if( CV_MAT_CN(type) == 1 || coi == 0 )
453 CV_ERROR( CV_StsOutOfRange, "The input array must have at most 4 channels unless COI is set" );
472 mask_step, size, CV_MAT_CN(type), coi, mean.val ));
cxminmaxloc.cpp 108 CvSize size, int cn, int coi, \
112 (src) += coi - 1; \
237 const uchar* mask, int maskStep, CvSize size, int cn, int coi, \
240 (src) += coi - 1; \
298 int type, depth, cn, coi = 0; local
317 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
324 if( cn > 1 && coi == 0 )
358 if( CV_MAT_CN(type) == 1 || coi == 0 )
375 IPPI_CALL( func( mat->data.ptr, mat_step, size, cn, coi,
381 if( CV_MAT_CN(type) == 1 || coi == 0
    [all...]
cxnorm.cpp 220 CvSize size, int cn, int coi, double* _norm ) \
226 src += coi - 1; \
257 CvSize size, int cn, int coi, double* _norm ) \
261 src += coi - 1; \
365 int cn, int coi, double* _norm ) \
372 src1 += coi - 1; \
373 src2 += coi - 1; \
405 int cn, int coi, double* _norm ) \
410 src1 += coi - 1; \
411 src2 += coi - 1;
983 int coi = 0, coi2 = 0; local
    [all...]
cxrand.cpp 486 int coi = 0; local
487 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
489 if( coi != 0 )
490 CV_ERROR( CV_BadCOI, "COI is not supported" );
cxcopy.cpp 394 CV_ERROR( CV_StsBadArg, "COI + mask are not supported" );
405 CV_ERROR( CV_StsBadArg, "COI + mask are not supported" );
550 int coi = 0; local
551 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
553 if( coi != 0 )
720 int coi = 0; local
721 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
722 if( coi != 0 )
723 CV_ERROR( CV_BadCOI, "coi is not supported" );
925 int coi = 0 local
935 int coi = 0; local
1003 int coi = 0; local
1011 int coi = 0; local
    [all...]
cxmeansdv.cpp 437 CvSize size, int cn, int coi, \
444 src += coi - 1; \
473 int cn, int coi, double* mean, double* sdv )\
478 src += coi - 1; \
557 CvSize size, int cn, int coi, \
563 src += coi - 1; \
593 CvSize size, int cn, int coi, \
598 src += coi - 1; \
691 int type, coi = 0; local
    [all...]
cxarithm.cpp 535 int sctype, y, dy, type, depth, cn, coi = 0, cont_flag = 0; local
559 CV_CALL( src = cvGetMat( src, &srcstub, &coi ));
560 if( coi != 0 )
571 CV_CALL( dst = cvGetMat( dst, &dststub, &coi ));
572 if( coi != 0 )
1007 int sctype, y, dy, type, depth, cn, coi = 0, cont_flag = 0; local
1318 int type, depth, coi = 0; local
1665 int type, coi = 0; local
1988 int coi1, coi2, coi; local
    [all...]
cxcmp.cpp 254 int type, coi = 0; local
271 CV_CALL( src1 = cvGetMat( src1, &srcstub1, &coi ));
272 if( coi != 0 )
278 CV_CALL( src2 = cvGetMat( src2, &srcstub2, &coi ));
279 if( coi != 0 )
285 CV_CALL( src3 = cvGetMat( src3, &srcstub3, &coi ));
286 if( coi != 0 )
292 CV_CALL( dst = cvGetMat( dst, &dststub, &coi ));
293 if( coi != 0 )
353 int sctype, type, coi = 0 local
563 int type, coi = 0; local
702 int y, type, coi = 0; local
973 int type, coi = 0; local
1074 int type, coi = 0; local
    [all...]
cxconvert.cpp 176 CvSize size, int cn, int coi ), \
177 (src, srcstep, dst, dststep, size, cn, coi)) \
179 src += coi - 1; \
330 CvSize size, int cn, int coi ), \
331 (src, srcstep, dst, dststep, size, cn, coi)) \
333 dst += coi - 1; \
424 CvSize size, int cn, int coi );
431 CvSize size, int cn, int coi );
447 int type, cn, coi = 0; local
464 CV_CALL( src = cvGetMat( src, stub + 4, &coi ));
557 int type, cn, coi = 0; local
1519 int coi = 0; local
1533 int coi = 0; local
    [all...]
cxsumpixels.cpp 306 int coi, sumtype_final* sum ) \
310 src += coi - 1; \
337 int coi, sumtype_final* sum ) \
341 src += coi - 1; \
399 int type, coi = 0; local
467 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
511 if( CV_MAT_CN(type) == 1 || coi == 0 )
545 CV_MAT_CN(type), coi, sum.val ));
590 int type, coi = 0; local
634 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
    [all...]
cxarray.cpp 417 cvGetMatND( const CvArr* arr, CvMatND* matnd, int* coi )
425 if( coi )
426 *coi = 0;
443 CV_CALL( mat = cvGetMat( mat, &stub, coi ));
518 int coi = 0;
519 CV_CALL( hdr = cvGetMatND( arr, stubs + i, &coi ));
520 if( coi != 0 )
521 CV_ERROR( CV_BadCOI, "COI set is not allowed here" );
2052 int coi = img->roi->coi; local
2774 int coi = 0; local
2904 int dims, coi = 0; local
3115 int coi = 0; local
3590 int coi = -1; local
    [all...]
cxmatrix.cpp 64 int coi = 0; local
65 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
66 if( coi != 0 )
67 CV_ERROR( CV_BadCOI, "coi is not supported" );
464 int coi = 0; local
465 CV_CALL( src = cvGetMat( src, &sstub, &coi ));
466 if( coi != 0 )
467 CV_ERROR( CV_BadCOI, "coi is not supported" );
482 int coi = 0; local
483 CV_CALL( dst = cvGetMat( dst, &dstub, &coi ));
    [all...]
cxdrawing.cpp 2201 int coi = 0; local
2431 int coi = 0; local
    [all...]
cxmatmul.cpp 636 int coi = 0; local
645 int coi = 0; local
654 int coi = 0; local
668 int coi = 0; local
1612 int coi = 0, coi2 = 0; local
    [all...]
cxpersistence.cpp 3980 int y, width, height, elem_type, coi, depth; local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java 471 int coi = getCurrentOrientationIndexForGlobalIcons(); local
472 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
473 sAppMarketIcon[coi] == null) {
478 if (sGlobalSearchIcon[coi] != null) {
479 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
482 if (sVoiceSearchIcon[coi] != null) {
483 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
486 if (sAppMarketIcon[coi] != null) {
487 updateAppMarketIcon(sAppMarketIcon[coi]);
3218 int coi = getCurrentOrientationIndexForGlobalIcons(); local
3277 int coi = getCurrentOrientationIndexForGlobalIcons(); local
3320 int coi = getCurrentOrientationIndexForGlobalIcons(); local
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/cssparser/cssparser/0.9.13/
cssparser-0.9.13.jar 

Completed in 148 milliseconds