How to present OBJ file (read as a mesh file) in a contour plot?

30 ビュー (過去 30 日間)
Colin Hollar
Colin Hollar 2018 年 10 月 10 日
編集済み: Colin Hollar 2018 年 10 月 10 日
I have collected some scans (file format of model from the scanner: .obj, .mtl and .jpg). I am able to read the files as a 3D mesh, and am looking for ways I can create a contour plot under the mesh
  1 件のコメント
KSSV
KSSV 2018 年 10 月 10 日
As you have data in hand...can't you use contour ?

サインインしてコメントする。

回答 (2 件)

ANKUR KUMAR
ANKUR KUMAR 2018 年 10 月 10 日
An example of creating a mesh is here,
[X,Y] = meshgrid(-5:.2:5);
R = sqrt(X.^2 + Y.^2);
Z = sin(R)./R;
mesh(X,Y,Z)
  2 件のコメント
KSSV
KSSV 2018 年 10 月 10 日
@ ANKUR KUMAR the user already able to plot the mesh..he wants the contour plot.
@ Colin Hollar attach one sample file...it can be done.
ANKUR KUMAR
ANKUR KUMAR 2018 年 10 月 10 日
Ops. I misread the question.

サインインしてコメントする。


KSSV
KSSV 2018 年 10 月 10 日
This should work out:
obj = readObj(fname) ;
p = obj.v ;
t = obj.f ;
N = 10 ;
[c,h]=tricontour(t,p(:,1),p(:,2),p(:,3),N) ;
  1 件のコメント
KSSV
KSSV 2018 年 10 月 10 日
I think you should draw mesh for that, try:
trisurf(t,p(:,1),p(:,2),p(:,3))
As your question was plotting contours...I gave code for contours. Also change the value of N and try. Increase the value of N.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeContour Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by