How to change the thickness of lines in imagesc plot?

조회 수: 8 (최근 30일)
Namira
Namira 2018년 7월 3일
편집: Namira 2018년 7월 5일
I plotted this figure using command
imagesc(fd,f,log10(P));
I am able to change the colors of the figure, but I can't control the thickness of the line in Figure. I would like to draw the same figure with thicker and black colored line.
How could I proceed? Thanks.

채택된 답변

Image Analyst
Image Analyst 2018년 7월 4일
I don't know where the lines came from but if they are burned into the image, you can widen dark things by using imerode() which is a local minimum:
se = strel('disk', 4, 0);
fd = imerode(fd, se);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by