How to threshold a circular symmetric gaussian kernel filter?
Show older comments
Two matched-filters, tuned to objects of different sizes, are applied to the tophat image, each of which are thresholded separately and combined using a binary OR operation.
The above said is a step explained in a paper I am referring currently. Here the matched filters used are Circular symmetric Gaussian, kernel ,width= 17 (pixels), sigma = 2.38 (pixels)and Circular symmetric Gaussian, kernel width= 13 (pixels), sigma = 1.5 (pixels). I created the filters using the function 'fspecial' and filtered it using 'imfilter'. Can anyone explain what does 'thresholded separately' means here.
Thanks in advance
Answers (1)
Image Analyst
on 9 Jun 2014
0 votes
You apply one filter to the image, then threshold it to get binaryImage1. Then you apply the second filter and threshold it to get binaryImage2.
2 Comments
Jyothis Jose
on 10 Jun 2014
Image Analyst
on 10 Jun 2014
Yes of course:
binaryImage = momentMatrix > T;
but if the moment is a matrix, then sqrt(moment) will also be a matrix!
Categories
Find more on Image Category Classification in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!