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

  /external/opencv3/modules/hal/include/opencv2/hal/
defs.h 364 cvRound( double value )
412 int i = cvRound(value);
435 int i = cvRound(value);
472 CV_INLINE int cvRound(float value)
503 CV_INLINE int cvRound( int value )
519 int i = cvRound(value);
542 int i = cvRound(value);
628 template<> inline uchar saturate_cast<uchar>(float v) { int iv = cvRound(v); return saturate_cast<uchar>(iv); }
629 template<> inline uchar saturate_cast<uchar>(double v) { int iv = cvRound(v); return saturate_cast<uchar>(iv); }
638 template<> inline schar saturate_cast<schar>(float v) { int iv = cvRound(v); return saturate_cast<schar>(iv);
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h 210 CV_INLINE int cvRound( double value )
244 int temp = cvRound(value);
259 int temp = cvRound(value);
956 ipt.x = cvRound(point.x);
957 ipt.y = cvRound(point.y);
    [all...]

Completed in 47 milliseconds