what is the drawback in Laplacian of Gaussian filter? why are we going for Difference of gaussian?
What is the complexity in Marr-Hildreth (Laplacian of aGaussian) filter?
588 views Asked by van At
1
There are 1 answers
Related Questions in IMAGE-PROCESSING
- RuntimeError: Given groups=1, weight of size [64, 1, 3, 3], expected input[1, 3, 416, 416] to have 1 channels, but got 3 channels instead
- Unable to open shape_predictor_68_face_landmarks.dat
- When transferring mri t1 to mni152 spaces, the dimensions change and lose information, is that not a problem?
- How to detect the exact boundary of a Sudoku using OpenCV when there are multiple external boundaries?
- Nuke BlinkScript: Why does the convolution kernel scale down the image?
- CV2 Python - image merging based on homography matrix - error in mergeing
- Python pillow library text align center
- Implementing Image Processing for Dimension Measurement in Arduino-based Packaging System
- AI tools for generating clean clipping paths
- efficient way to remove a background from an image in python
- I want to segment an MRI image of the spine and obtain only the vertebrae using Matlab
- Find Gradient Magnitude using skimage.feature.hog module
- AR Image Display Issue
- Using python OpenCV to crop an image based on reference marks
- Python: Generating an image using Multiprocessing freezes
Related Questions in FILTERING
- Filtering a double value
- How the search filter from search bar works in mern?
- How to represent a filter in JSON?
- Functions to filter missing values in SQL and change them to null values
- Namely Api filter for field NOT Equal
- Blazor Radzen filtering and sorting not working/interacting
- How to filter values from showing up in a Looker Studio Time Series Chart
- Change filter binding mode in Blazor Bootstrap Grid (https://demos.blazorbootstrap.com/grid)
- Is there any way to remove log.syslog.structured_data field in logscale/kibana
- Filter data table based on a search term with variations
- Clarification on the concept of using a separable filter vs. without a separable filter
- Display only the current user logged in records in the index view in ASP.NET Core MVC?
- jqxGrid not able to cutomize derived column filters using "addfilter" function
- Filtering algorithm working on one machine but not on other
- Filtering Angular 17
Related Questions in GAUSSIAN
- Normal Bayes Classification
- Using tft.scale_to_gaussian for preprocessing a dataset without using other tensorflow operations
- How to Implement Back Substitution for Solving Linear Systems in Python?
- A question about odds ratio: Gaussian vs binomial regression 5
- Mahalanobis distance between two multivariate Gaussian distribution
- Clarifying the Process of Generating iid Gaussian Random Vectors in MATLAB
- Assymetric gaussian funciton fitting in Python for time series
- Gauss Method using parallelism in C++
- Attempting a double Gaussian for the data below
- How to minimize the weighted sum of squared errors with bivariate Gaussian model in R in order to estimate model's parameter?
- Diffraction Grating using Fraunhofer diffraction approximation (MATLAB)
- How to compute 2D convolution using 1D convolution over rows and columns?
- Gaussian Pulse generation using python
- Can two Gaussian curves be plotted in different colors on the same plot?
- Problem in applying 2D gaussian method to a raster
Related Questions in EDGE-DETECTION
- Cytoscape setting help for directed edges
- Image not uploading using flask (shows no file selected when I click upload). IDE shows 302
- How to find contours from a Sobel edge detection image
- Unable to get left and right road edge
- edge detection and selection with with brightness differences
- Edge detection shader (Passing 3 vertex positions to the shader program)
- Extracting vector line segments from an image
- Implementing Harris Corner detector, by following standard material, it ends up detecting edges
- I have an image which has a lot of rectangular smaller images on it. how to extract and save them in python?
- check50 saying CS50 filter-more edges is not correct?
- Error in image dimensions while using edge detection model based resnets
- Advice on preprocessing steps for edge detection on license plate images
- difference between png image saved after imshow and png from videocapture frame
- Difficulty detecting object shape change between good and bad states using fitEllipse and convex hull in OpenCV
- Drawing a circle of defined coordinates over edges detected
Related Questions in LAPLACIANOFGAUSSIAN
- Getting lossy reconstruction with using laplacian pyramid to reconstruct an image
- Laplacian of Gaussian Blob Detection showing blobs that shouldn't be there
- If I add a constant value to all pixels of a single channel image, would the result of Laplacian of Gaussian (LoG) convolution remain the same?
- Upper limit of sharpness score
- Normalization of blur of the image using Laplacian
- How to have consistent upsampling/downsampling when creating a laplacian pyramid?
- How to use Laplacian of Gaussian for elliptical blobs?
- Implement Laplacian of Gaussian Filter
- How to find zero crossings in the Laplacian of Gaussian of an image
- OpenCV laplacian pyramid: size not correct
- What am I doing wrong trying to do a Laplacian of Gaussian convolution with Renderscript Intrinsics?
- How to graph/plot 2D Laplacian of Gaussian (LoG) function in MATLAB or python?
- What is the different between LoG (Laplacian of Gaussian) filter, first and second derivative Gaussian filter?
- OpenCV filter2d gives incorrect result
- Laplacian of Gaussian linearity
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
There is no drawback in Laplace of Gaussian. I use it all the time. Difference of Gaussians is an approximation, but both need the same amount of computation:
LoG: convolution with the second derivative along x of a Gaussian + convolution with the second derivative along y of a Gaussian
DoG: convolution with a Gaussian - convolution with another Gaussian
Each of those convolutions is a separable operation, so both require 4 1D convolutions, and 1 intermediate image to store one of the two results.
Many people implement these operations differently, for example the LoG as a convolution with a Gaussian and then with a discrete Laplace operator. This is, again, an approximation, and could be slightly faster.
There are also separable approximations to the DoG (which require thus only 2 1D convolutions), but these are much less isotropic (which means not invariant to rotations of the image).
Little known fact: as the two sigmas in the Difference of Gaussians approach each other, the approximation becomes more similar to the Laplace of Gaussian.
EDIT: I have just posted a more elaborate answer over at Signal Processing.