Home
last modified time | relevance | path

Searched refs:ximgproc (Results 1 – 25 of 117) sorted by relevance

12345

/dports/graphics/opencv/opencv-4.5.3/contrib/modules/ximgproc/test/
H A Dtest_matchcolortemplate.cpp20 ximgproc::createQuaternionImage(imgTest, qimgTest); in TEST()
21 ximgproc::qdft(qimgTest, qdftimgTest, 0, true); in TEST()
25 ximgproc::qdft(qimgTest, qdftimgTest, 0, false); in TEST()
27 ximgproc::qdft(qimgTest, qdftimgTest, DFT_INVERSE, true); in TEST()
29 ximgproc::qdft(qimgTest, qdftimgTest, DFT_INVERSE, false); in TEST()
42 ximgproc::createQuaternionImage(img, img); in TEST()
47 ximgproc::qdft(img, test, flag[i], leftSize[i]); in TEST()
69 ximgproc::colorMatchTemplate(img, logo, corr); in TEST()
H A Dtest_fourier_descriptors.cpp23 ximgproc::fourierDescriptor(ctr, fd); in TEST()
32 ximgproc::fourierDescriptor(ctr, fd); in TEST()
44 ximgproc::fourierDescriptor(ctr, fd); in TEST()
68 ximgproc::ContourFitting fit; in TEST()
83 ximgproc::contourSampling(ctr, ctrs, 64); in TEST()
H A Dtest_structured_edge_detection.cpp16 cv::Ptr<cv::ximgproc::StructuredEdgeDetection> pDollar = in TEST()
17 cv::ximgproc::createStructuredEdgeDetection(modelName); in TEST()
H A Dtest_deriche_filter.cpp17 ximgproc::GradientDericheX(img, dst, a, w); in TEST()
36 ximgproc::GradientDericheY(img, dst2, a, w); in TEST()
H A Dtest_precomp.hpp13 using namespace cv::ximgproc;
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/ximgproc/samples/
H A Dthinning.cpp23 ximgproc::thinning(img_binary, img_thinning_ZS, ximgproc::THINNING_ZHANGSUEN); in main()
24 ximgproc::thinning(img_binary, img_thinning_GH, ximgproc::THINNING_GUOHALL); in main()
H A Dedgeboxes_demo.py20 edge_detection = cv.ximgproc.createStructuredEdgeDetection(model)
27 edge_boxes = cv.ximgproc.createEdgeBoxes()
H A Dpeilin.cpp42 cv::Mat N = I & cv::ximgproc::PeiLinNormalization ( I ); in main()
43 cv::Mat D = cv::ximgproc::PeiLinNormalization ( J ) & I; in main()
H A Dfourier_descriptors_demo.cpp103 ximgproc::ContourFitting fit; in main()
106 ximgproc::contourSampling(ctrRef, ctrRef2d, 256); // use a mat in main()
107 ximgproc::contourSampling(ctrNoisyRotateShift, ctrRot2d, 256); // use a vector of points in main()
115 ximgproc::transformFD(ctrRot2d, t, dst, false); in main()
H A Dfourier_descriptors_demo.py149 fit = cv.ximgproc.createContourFitting(1024,16);
153 ctrRef2d = cv.ximgproc.contourSampling(cn, 256)
154 ctrRot2d = cv.ximgproc.contourSampling(ctrNoisyRotateShift, 256)
162 dst = cv.ximgproc.transformFD(ctrRot2d, alphaPhiST,cn, False);
H A DdericheSample.py24 self.dximg = cv.ximgproc.GradientDericheX( self.img, self.alpha/100., self.omega/1000. )
25 self.dyimg = cv.ximgproc.GradientDericheY( self.img, self.alpha/100., self.omega/1000. )
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/ximgproc/misc/python/test/
H A Dtest_disparity.py10 ret,GT = cv.ximgproc.readGT(self.find_file("cv/disparityfilter/GT.png"))
18 mse = cv.ximgproc.computeMSE(GT, left, (0, 0, GT.shape[1], GT.shape[0]))
21 bad = cv.ximgproc.computeBadPixelPercent(GT, left, (0, 0, GT.shape[1], GT.shape[0]), 24)
H A Dtest_sparse_match_interpolator.py22 interpolator = cv.ximgproc.createEdgeAwareInterpolator()
52 interpolator = cv.ximgproc.createRICInterpolator()
57 interpolator.setSuperpixelMode(cv.ximgproc.SLIC)
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/ximgproc/tutorials/
H A Ddisparity_filtering.markdown30 …ed [here ](https://github.com/opencv/opencv_contrib/blob/master/modules/ximgproc/samples/disparity…
42 @snippet ximgproc/samples/disparity_filtering.cpp load_views
47 @snippet ximgproc/samples/disparity_filtering.cpp downscale
52 @snippet ximgproc/samples/disparity_filtering.cpp matching
61 @snippet ximgproc/samples/disparity_filtering.cpp filtering
68 @snippet ximgproc/samples/disparity_filtering.cpp visualization
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/optflow/src/
H A Drlofflow.cpp89 , slic_type(ximgproc::SLIC) in DenseOpticalFlowRLOFImpl()
133 …virtual void setRICSLICType(int val) CV_OVERRIDE { slic_type = static_cast<ximgproc::SLICType>(val… in setRICSLICType()
213 Ptr<ximgproc::EdgeAwareInterpolator> gd = ximgproc::createEdgeAwareInterpolator(); in calc()
224 Ptr<ximgproc::RICInterpolator> gd = ximgproc::createRICInterpolator(); in calc()
248 ximgproc::fastGlobalSmootherFilter(prevImage, flow, flow, fgs_lambda, fgs_sigma); in calc()
285 ximgproc::SLICType slic_type;
H A Dsparsetodenseflow.cpp102 Ptr<ximgproc::EdgeAwareInterpolator> gd = ximgproc::createEdgeAwareInterpolator(); in calcOpticalFlowSparseToDense()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/ximgproc/perf/
H A Dperf_precomp.hpp12 using namespace cv::ximgproc;
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/ximgproc/misc/python/
H A Dpyopencv_ximgproc.hpp2 typedef cv::ximgproc::EdgeDrawing::Params EdgeDrawing_Params;
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/ximgproc/include/opencv2/ximgproc/
H A Dbrightedges.hpp47 namespace ximgproc { namespace
H A Dedgepreserving_filter.hpp10 namespace cv { namespace ximgproc { namespace
H A Destimated_covariance.hpp59 namespace ximgproc namespace
H A Dpeilin.hpp10 namespace cv { namespace ximgproc { namespace
H A Dderiche_filter.hpp44 namespace ximgproc { namespace
H A Dpaillou_filter.hpp44 namespace ximgproc { namespace
H A Dweighted_median_filter.hpp58 namespace ximgproc namespace

12345