Removing Noise From Image

1 visualizzazione (ultimi 30 giorni)
Dilchand Nauth
Dilchand Nauth il 23 Giu 2019
Risposto: Image Analyst il 23 Giu 2019
I have an issue where the pcolor plot has noiseness at the top part of the plot. How do I get rid of this noise and smooth the plot? I am trying to smooth and remove the noise from the image below.
CaptureP1.JPG
This is the code I have for the plotting part of my code. I am new to MATLAB.
map = pcolor(gridLonBoundaries, gridLatBoundaries, nitrogenCellAveraged);
set(map,'edgecolor','none')
hold on
h = colorbar;
set(get(h,'label'),'string','Nitrogen Dioxide Index');
colormap jet
caxis([0.00001 0.00005])
load coast
hold on
plot(long,lat,'k')

Risposte (1)

Image Analyst
Image Analyst il 23 Giu 2019
pcolor() is not the problem. The problem is in your actual data, nitrogenCellAveraged. That's what needs to be cleaned up.

Categorie

Scopri di più su Colormaps in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by