필터 지우기
필터 지우기

How to plot a subset of triangles after DelaunayTri

조회 수: 4 (최근 30일)
Amani
Amani 2013년 12월 9일
댓글: Amani 2013년 12월 23일
I have computed a Delaunay triangulation using DelaunayTri(). Then I extracted big triangles based on a threshold, how can I reconstruct these triangles and plot it in a figure ?
thanks

채택된 답변

Simon
Simon 2013년 12월 9일
Hi!
If you have a triangulation you can of course plot specific triangles (if you know them) with
TRI = dt.Triangulation;
X = dt.X;
ind = [1,2,3,4,5];
triplot(TRI(ind, :), X(:, 1), X(:, 2));
  댓글 수: 5
Amani
Amani 2013년 12월 12일
I got this error
Error using == Matrix dimensions must agree.
Simon
Simon 2013년 12월 12일
I used the code:
x = rand(20,1);
y = rand(20,1);
dt = DelaunayTri(x,y);
figure(1)
triplot(dt);
ID = 1;
TRI = dt.Triangulation;
X = dt.X;
[ind, ~] = ind2sub(size(TRI), find(TRI==ID));
figure(2)
triplot(TRI(ind, :), X(:, 1), X(:, 2));
Works without problems.

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

추가 답변 (1개)

Amani
Amani 2013년 12월 9일
how can I calculate the distance between two connected vertices (only Y coordinate) TRI = dt.Trangulation for q=1:size(dt,1) for u=1:size(dt,1) j = isConnected(k,q,u); if (j == true) % retrive q and u (y coordinate) and calculate the distance between them end
end
thanks
  댓글 수: 14
Simon
Simon 2013년 12월 19일
I used gimp for conversion. But I think you should not divide by 255. Images in matlab are uint8 with values between 0 and 255, in contrast to color values for e.g plotting with values between 0 and 1.
Amani
Amani 2013년 12월 23일
I remove \255 but still did not work .. is there any other way for conversion to rgb?
thanks

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

카테고리

Help CenterFile Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by