HomeSort by relevance Sort by last modified time
    Searched full:_src (Results 176 - 200 of 242) sorted by null

1 2 3 4 5 6 78 910

  /external/opencv/cv/src/
cvsnakes.cpp 110 CvMat _src = cvMat( roi.height, roi.width, CV_8UC1, src ); local
306 cvGetSubArr( &_src, &_src1, g_roi );
cvsurf.cpp 355 CvMat _src, *src = img; local
456 src = cvGetSubArr( &_rs_patch, &_src, sr_patch_rect );
457 cvResize( &_src0, &_src, CV_INTER_AREA );
  /external/opencv3/modules/cudaimgproc/src/
mssegmentation.cpp 225 void cv::cuda::meanShiftSegmentation(InputArray _src, OutputArray _dst, int sp, int sr, int minsize, TermCriteria criteria, Stream& stream)
227 GpuMat src = _src.getGpuMat();
generalized_hough.cpp 180 void GeneralizedHoughBase::calcEdges(InputArray _src, GpuMat& edges, GpuMat& dx, GpuMat& dy)
182 GpuMat src = _src.getGpuMat();
  /external/opencv3/modules/imgcodecs/src/
grfmt_pxm.cpp 205 AutoBuffer<uchar> _src(src_pitch + 32);
206 uchar* src = _src;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mbstring.h 125 _CRTIMP void __cdecl _mbccpy(unsigned char *_Dst,const unsigned char *_Src) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
126 _CRTIMP void __cdecl _mbccpy_l(unsigned char *_Dst,const unsigned char *_Src,_locale_t _Locale) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
  /external/opencv/cxcore/src/
cxmatmul.cpp 89 const uchar* _src = src; local
93 for( j = 0; j < size.height; j++, _src += src_step )
94 ((int*)dst)[j] = ((int*)_src)[0];
97 for( j = 0; j < size.height*2; j += 2, _src += src_step )
99 int t0 = ((int*)_src)[0];
100 int t1 = ((int*)_src)[1];
106 for( j = 0; j < size.height*4; j += 4, _src += src_step )
108 int t0 = ((int*)_src)[0];
109 int t1 = ((int*)_src)[1];
112 t0 = ((int*)_src)[2]
    [all...]
cxdxt.cpp     [all...]
  /external/valgrind/VEX/priv/
guest_x86_helpers.c     [all...]
  /ndk/build/core/
definitions.mk     [all...]
  /external/opencv3/modules/core/src/
lapack.cpp 792 double cv::invert( InputArray _src, OutputArray _dst, int method )
795 Mat src = _src.getMat();
    [all...]
  /external/opencv3/modules/calib3d/test/
test_undistort.cpp 171 void distortPoints(const CvMat* _src, CvMat* _dst, const CvMat* _cameraMatrix,
488 void CV_UndistortPointsTest::distortPoints(const CvMat* _src, CvMat* _dst, const CvMat* _cameraMatrix,
525 double x = (_src->data.db[2*i]-__P->data.db[2])/__P->data.db[0];
526 double y = (_src->data.db[2*i+1]-__P->data.db[5+movement])/__P->data.db[4+movement];
    [all...]
test_fundam.cpp 353 CvMat _src = src, _dst = dst, _jac; local
356 cvTsRodrigues(&_src, &_dst, jac ? &_jac : 0);
360 static void test_convertHomogeneous( const Mat& _src, Mat& _dst )
362 Mat src = _src, dst = _dst;
367 _src.convertTo(src, CV_64F);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
Android.mk 90 _SRC:=$(2)
  /external/libnl/lib/netfilter/
ct_obj.c 69 static int ct_clone(struct nl_object *_dst, struct nl_object *_src)
72 struct nfnl_ct *src = (struct nfnl_ct *) _src;
  /external/libnl/lib/route/
addr.c 156 static int addr_clone(struct nl_object *_dst, struct nl_object *_src)
159 struct rtnl_addr *src = nl_object_priv(_src);
neigh.c 183 static int neigh_clone(struct nl_object *_dst, struct nl_object *_src)
186 struct rtnl_neigh *src = nl_object_priv(_src);
route_obj.c 95 static int route_clone(struct nl_object *_dst, struct nl_object *_src)
98 struct rtnl_route *src = (struct rtnl_route *) _src;
rule.c 56 static int rule_clone(struct nl_object *_dst, struct nl_object *_src)
59 struct rtnl_rule *src = nl_object_priv(_src);
  /external/mesa3d/src/gallium/drivers/identity/
id_context.c 613 struct pipe_resource *_src,
619 struct identity_resource *id_resource_src = identity_resource(_src);
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_context.c 849 struct pipe_resource *_src,
855 struct rbug_resource *rb_resource_src = rbug_resource(_src);
    [all...]
  /external/opencv3/modules/imgproc/src/
generalized_hough.cpp 110 void GeneralizedHoughBase::calcEdges(InputArray _src, Mat& edges, Mat& dx, Mat& dy)
112 Mat src = _src.getMat();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/lib32/
libitm.a     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/lib32/
libitm.a     [all...]
  /external/opencv3/modules/features2d/src/
mser.cpp 347 void detect( InputArray _src, vector<KeyPoint>& keypoints, InputArray _mask );
    [all...]

Completed in 596 milliseconds

1 2 3 4 5 6 78 910