How to filter an signal(image) data best

Technical Source
3 min readFeb 9, 2021

--

I have an almost urgent problem to solve. I have a 2 dimensional 152x2000 matrix, B. We can say time domain signal or image. I have to filter, remove(supress) unwanted like noise parts and improve the image(2 dimensional signal). It can be thought that focusing to the high intensity part of the image.

This is the image I have by imagesc abs of B;

Finally, I want to get an image only the circle like shape with yellow and red colours. I want to remove the other light blue pixels(signals).

I want to filter this image or signal matrix by filtering along two dimensions seperate and orderly.

If I say approx. the middle of this circle like shape image is at (29,1334) and then when I plot of abs of B(signal matrix) along 29th row, this is the result ;

When I plot of abs of B along 1334 column, the result is ;

According to these all info, which best filter along row and column has to implemented ?

Bandpass ? , how, could you write the necessary code for the best filtering along two dimensions orderly ?

Any fast help greatly appreciated :)

ANSWER

Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.

If you want to extract the bright section, why are you talking about filters like band pass filters? Just threshold it.

% Find out where it's dark/dim.
binaryImage = grayImage < 1.5;
% Blacken out where it's below the threshold.
grayImage(binaryImage) = 0;
imshow(grayImage, []);

If you do want to do noise reduction, there are plenty of filters to choose from, from the easy box filter and median filter, to better but more complicated filters like bilateral and Savitzky-Golay, to even better and even more comp…..

SEE COMPLETE ANSWER CLICK THE LINK

--

--

Technical Source
Technical Source

Written by Technical Source

Simple! That is me, a simple person. I am passionate about knowledge and reading. That’s why I have decided to write and share a bit of my life and thoughts to.

No responses yet