필터 지우기
필터 지우기

Thickness of height profile in Matlab

조회 수: 3 (최근 30일)
Suneet Kale
Suneet Kale 2020년 11월 23일
댓글: Suneet Kale 2020년 11월 29일
Hi,
I have aploted AFM height profiles from images using plot fuction in matlab.
I also need to find the difference or thickness from these height profiles, Is there a way I can do that in Matlab.
Here is what I have so far
This image has two height profiles and I can plot the maximum and minimum data lines for the profile.
I also need the difference on the plot. This is what I want (I use power point for this)
I have attached the code I use. Any help will be appreciated.
Thank you.

채택된 답변

Nora Khaled
Nora Khaled 2020년 11월 23일
Try this
% to plot vertical line
xAxis=1.25
ymin=B % min point
ymax=A %max point
line([xAxis xAxis], [ymin ymax]);
% add text
txt = 'Thickness';
text(xAxis+1,C/2,txt)
  댓글 수: 1
Suneet Kale
Suneet Kale 2020년 11월 29일
Hi,
Thank you that helps but I have to process close to 30+ graphs like thi.
Is there a way where I can do it without writng custom values for everything?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by