Questions tagged [multi-scale-analysis]
24 questions
21
votes
1 answer
How to Extract High Frequency and Low Frequency Component Using Bilateral Filter?
What does High frequency and low frequency component signify in an image.
How to separate out the high frequency as well as low frequency component of an image using Bilateral filter.
Deepak kumar Jha
- 447
- 1
- 4
- 9
17
votes
2 answers
What Is the Difference between Difference of Gaussian, Laplace of Gaussian, and Mexican Hat Wavelet?
There are three techniques used in CV that seem very similar to each other, but with subtle differences:
Laplacian of Gaussian: $\nabla^2\left[g(x,y,t)\ast f(x,y)\right]$
Difference of Gaussians: $ \left[g_1(x,y,t)\ast f(x,y)\right] -…
DeusXMachina
- 308
- 1
- 2
- 8
10
votes
2 answers
Understanding SURF Features Calculation Process
So, I was reading the paper on SURF (Bay, Ess, Tuytelaars, Van Gool: Speeded-Up Robust Features (SURF)) and I can not comprehend this paragraph below:
Due to the use of box filters and integral images, we do not have to
iteratively apply the same…
motiur
- 394
- 1
- 4
- 15
8
votes
3 answers
Image Pyramid Without Decimation
I have an image processing algorithm which uses Gaussian and Laplacian Pyramid Decomposition.
At each level of the pyramid the algorithm decimates the previous level by a factor of 2.
The LPF the algorithm uses is Gaussian.
I was wondering whether I…
Royi
- 33,983
- 4
- 72
- 179
7
votes
2 answers
Losslessness of Laplacian Pyramid
I was just reading up on the Gaussian pyramid and the Laplacian pyramid, used in compression applications of image. The source is here - Carnegie Mellon 16-385 Computer Vision - Spring 2019, Lecture 3 - Image Pyramids and Frequency Domain.
The slide…
Sridhar Thiagarajan
- 173
- 4
6
votes
2 answers
How to Combine Low and High Frequencies of Two Images in MATLAB?
I would like to combine two images A and B in the following way:
1) I want to take a Fourier transform of both of them
2) For image A I want to apply a weighted filter, which gives more emphasis for low frequencies
3) For image B I want to apply a…
jjepsuomi
- 275
- 1
- 2
- 9
6
votes
1 answer
Multi Scale Shape and Detail Enhancement from Multi Light Image Collections
I have been working on a practical implementation in Matlab of the algorithm Raanan Fattal suggested in the following paper.
I couldn't understand the meaning of eq. 11 on page 5:
\begin{equation}\begin{array}{llllll}
U^{(i, j)}=g_{\sigma_{d}} *…
ako
- 63
- 3
6
votes
2 answers
Difference between Sub Sampling and Down Scaling of Images
I know that there are many ways to upscale (interpolate) an image using bilinear, bicubic, sinc... Somehow, these same algorithms can also be used to downscale an image. But when it comes to subsampling, I've come across only two methods:…
Myath
- 163
- 1
- 4
5
votes
1 answer
2D Multi Scale Dot Enhancement Filter based on Gaussian Filter and Hessian Matrix
I'm trying to implement an algorithm that enhance dot and line like structures based on Hessian matrix, the algorithm uses Gaussian filter with different scales before calculating the hessian matrix for every pixel and later the Eigen values.
I want…
ZSmain
- 205
- 2
- 8
3
votes
1 answer
At what stage do we compute the approximations and details while performing a DWT?
$$
\int_{-\infty}^{+\infty}{f(t)\psi_{j,k}^\ast(t)dt}\ \textrm{with}\ \psi_{j,k}(t)\ =\ a_0^{-j/2}\psi(a_0^{-j}t\ -\ b_0k)
$$
If this is the expression for the wavelet transform, how does this lead to wavelet decomposition and at what stage do we…
Dhanush Giriyan
- 133
- 3
3
votes
1 answer
What Is Proper Paper and MATLAB Toolbox Describing and Discussing Wavelet, Ridgelet, Curvelet and Contourlet Transforms in Detail?
Question 1:
Does anybody know any paper proper for getting started understanding the concept of Wavelet, Ridgelet, Curvelet and Contourlet transforms and their differences in detail?
Question 2:
does anybody know a MATLAB toolbox for implementation…
M.Jalali
- 447
- 3
- 13
3
votes
0 answers
Creating a Gaussian Pyramid
I'm trying to recreate a gassuain pyramid using the following scales:
There seems to be two concepts used here:
1) When an image is halved, applying a gaussian kernel of σ will apply as 2σ.
2) When an image has a scale of σ, and a gaussian kernel…
JustinBlaber
- 153
- 6
2
votes
2 answers
Is It Possible to Reconstruct the Original Image from Laplacian Pyramid?
In our computer vision course, my professor said we can reconstruct the original image from the Laplacian pyramid. It just feels to me that information is lost after doing subsampling and upsampling.
Is it possible? If so, why? Are the…
johan
- 123
- 1
- 6
2
votes
1 answer
How Do Steerable Pyramids Work?
I'm reading a paper about texture synthesis using pyramids, and the very first section mention two methods for constructing pyramids, one is the Laplacian Pyramid (which I'm quite familiar with), the other one is "steerable pyramid". I got the idea…
user8469759
- 375
- 2
- 10
2
votes
2 answers
Blending artifacts in OpenCV image stitching
I am using OpenCV to blend a set of pre-warped images. As input I have some 4-channel images (*.png or *.tif) from where I can extract a bgr image and an alpha mask with the region related to the image (white) and the background (black). Both image…
Finfa811
- 121
- 1
- 8