How to eliminate points with highest intensity in a color plot?

조회 수: 1 (최근 30일)
Alberto Paniate
Alberto Paniate 2020년 5월 16일
댓글: darova 2020년 5월 16일
Hi, I have a matrix that I visualize with a color plot. But there are points with very high intensity that don't allow me to visualize it properly. Do you know how can I eliminate these points?
I visualize the matrix with:
figure,imagesc(C(:,:))

답변 (1개)

Mehmed Saad
Mehmed Saad 2020년 5월 16일
Instead of removing those points you can change Clim property of imagesc
For example
C = rand(40,40);
C(5,5) = 25;
figure,imagesc(C)
Now change the Clim
set(gca,'Clim',[0 1])

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by