Home
last modified time | relevance | path

Searched refs:Gaussian (Results 1 – 25 of 27) sorted by relevance

12

/external/opencv3/doc/py_tutorials/py_imgproc/py_pyramids/
Dpy_pyramids.markdown23 There are two kinds of Image Pyramids. 1) Gaussian Pyramid and 2) Laplacian Pyramids
25 Higher level (Low resolution) in a Gaussian Pyramid is formed by removing consecutive rows and
30 Similarly while expanding, area becomes 4 times in each level. We can find Gaussian pyramids using
50 Laplacian Pyramids are formed from the Gaussian Pyramids. There is no exclusive function for that.
53 Gaussian Pyramid and expanded version of its upper level in Gaussian Pyramid. The three levels of a
73 2. Find the Gaussian Pyramids for apple and orange (in this particular example, number of levels
75 3. From Gaussian Pyramids, find their Laplacian Pyramids
88 # generate Gaussian pyramid for A
95 # generate Gaussian pyramid for B
/external/opencv3/doc/tutorials/imgproc/gausian_median_blur_bilateral_filter/
Dgausian_median_blur_bilateral_filter.markdown52 ### Gaussian Filter
54 - Probably the most useful filter (although not the fastest). Gaussian filtering is done by
55 convolving each point in the input array with a *Gaussian kernel* and then summing them all to
57 - Just to make the picture clearer, remember how a 1D Gaussian kernel look like?
66 Remember that a 2D Gaussian can be represented as :
82 - In an analogous way as the Gaussian filter, the bilateral filter also considers the neighboring
84 which is the same weighting used by the Gaussian filter. The second component takes into account
140 /// Applying Gaussian blur
141 if( display_caption( "Gaussian Blur" ) != 0 ) { return 0; }
213 -# **Gaussian Filter:**
/external/opencv3/doc/py_tutorials/py_imgproc/py_filtering/
Dpy_filtering.markdown86 ### 2. Gaussian Blurring
92 zeros, they are calculated from kernel size. Gaussian blurring is highly effective in removing
95 If you want, you can create a Gaussian kernel with the function, **cv2.getGaussianKernel()**.
97 The above code can be modified for Gaussian blurring:
132 function of pixel difference. Gaussian function of space make sure only nearby pixels are considered
/external/opencv3/doc/tutorials/imgproc/pyramids/
Dpyramids.markdown31 - **Gaussian pyramid:** Used to downsample images
34 - In this tutorial we'll use the *Gaussian pyramid*.
36 #### Gaussian Pyramid
44 - To produce layer \f$(i+1)\f$ in the Gaussian pyramid, we do the following:
45 - Convolve \f$G_{i}\f$ with a Gaussian kernel:
/external/webrtc/webrtc/base/
Drandom.h48 double Gaussian(double mean, double standard_deviation);
Drandom.cc69 double Random::Gaussian(double mean, double standard_deviation) { in Gaussian() function in webrtc::Random
Drandom_unittest.cc270 TEST(RandomNumberGeneratorTest, Gaussian) { in TEST() argument
280 int index = prng.Gaussian(kMean, kStddev) + 0.5; in TEST()
/external/opencv3/doc/py_tutorials/py_video/py_bg_subtraction/
Dpy_bg_subtraction.markdown32 It is a Gaussian Mixture-based Background/Foreground Segmentation Algorithm. It was introduced in
35 pixel by a mixture of K Gaussian distributions (K = 3 to 5). The weights of the mixture represent
70 It is also a Gaussian Mixture-based Background/Foreground Segmentation Algorithm. It is based on two
/external/opencv3/doc/py_tutorials/py_feature2d/py_sift_intro/
Dpy_sift_intro.markdown35 For this, scale-space filtering is used. In it, Laplacian of Gaussian is found for the image with
44 approximation of LoG. Difference of Gaussian is obtained as the difference of Gaussian blurring of
46 different octaves of the image in Gaussian Pyramid. It is represented in below image:
/external/opencv3/doc/tutorials/imgproc/imgtrans/laplace_operator/
Dlaplace_operator.markdown49 - Remove noise by applying a Gaussian blur and then convert the original image to grayscale
76 -# Apply a Gaussian blur to reduce noise:
/external/opencv3/doc/py_tutorials/py_imgproc/py_thresholding/
Dpy_thresholding.markdown100 'Adaptive Mean Thresholding', 'Adaptive Gaussian Thresholding']
149 # Otsu's thresholding after Gaussian filtering
159 'Gaussian filtered Image','Histogram',"Otsu's Thresholding"]
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
Doveruse_detector_unittest.cc62 random_.Gaussian(0, standard_deviation_ms) + 0.5)); in Run100000Samples()
85 random_.Gaussian(0, standard_deviation_ms) + 0.5)); in RunUntilOveruse()
127 int index = random_.Gaussian(49, 10); in TEST_F()
/external/opencv3/doc/tutorials/imgproc/imgtrans/canny_detector/
Dcanny_detector.markdown23 -# Filter out any noise. The Gaussian filter is used for this purpose. An example of a Gaussian
/external/opencv3/doc/py_tutorials/py_feature2d/py_surf_intro/
Dpy_surf_intro.markdown19 In SIFT, Lowe approximated Laplacian of Gaussian with Difference of Gaussian for finding
/external/opencv3/doc/tutorials/core/interoperability_with_OpenCV_1/
Dinteroperability_with_OpenCV_1.markdown16 - How to add some Gaussian noise to an image
108 image some Gaussian noise and then mix together the channels according to some formula.
/external/opencv3/doc/tutorials/imgproc/imgtrans/hough_circle/
Dhough_circle.markdown61 -# Apply a Gaussian blur to reduce noise and avoid false circle detection:
/external/opencv3/modules/ml/doc/
Dml_intro.markdown50 function is assumed to be a Gaussian mixture, one component per class. Using the training data the
303 density function in the form of a Gaussian mixture distribution with a specified number of mixtures.
306 space drawn from a Gaussian mixture:
352 Estimation for Gaussian Mixture and Hidden Markov Models_. Technical Report TR-97-021,
392 - Gaussian function ( cv::ml::ANN_MLP::GAUSSIAN ): \f$f(x)=\beta e^{-\alpha x*x}\f$ , which is not
/external/opencv3/doc/py_tutorials/py_imgproc/py_canny/
Dpy_canny.markdown21 image with a 5x5 Gaussian filter. We have already seen this in previous chapters.
/external/opencv3/doc/py_tutorials/py_photo/py_non_local_means/
Dpy_non_local_means.markdown16 In earlier chapters, we have seen many image smoothing techniques like Gaussian Blurring, Median
/external/opencv3/doc/tutorials/imgproc/imgtrans/sobel_derivatives/
Dsobel_derivatives.markdown49 -# The Sobel Operator combines Gaussian smoothing and differentiation.
/external/opencv3/doc/py_tutorials/py_imgproc/py_grabcut/
Dpy_grabcut.markdown42 - Now a Gaussian Mixture Model(GMM) is used to model the foreground and background.
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dbwe_test_framework.cc397 int64_t gaussian_random = random->Gaussian(mean, std_dev); in TruncatedNSigmaGaussian()
/external/opencv3/doc/tutorials/highgui/video-input-psnr-ssim/
Dvideo_input_psnr_ssim.markdown234 one, where one corresponds to perfect fit. Unfortunately, the many Gaussian blurring is quite
/external/opencv3/doc/py_tutorials/py_imgproc/py_transforms/py_fourier_transform/
Dpy_fourier_transform.markdown110 Better option is Gaussian Windows.
/external/opencv3/doc/
Dopencv.bib802 title = {Improved adaptive Gaussian mixture model for background subtraction},

12