Surface fitting for 3D point cloud acquired by photogrammetry

12 ビュー (過去 30 日間)
Srinu Vasu
Srinu Vasu 2019 年 8 月 12 日
回答済み: Joel Handy 2019 年 8 月 12 日
Hi,
We are trying to fit surface on a 3D point cloud.
  • The 3D point cloud is reconstructed from multiple 2D images of a human face (https://doi.org/10.1109/INDICON.2016.7839156)
  • The density of the point cloud is not uniform over its span. For example, at nose and eyes, the density is low but complexity is high. For areas such as the forehead and cheeks, it’s the other way.
  • At this point, we have only XYZ information of this point cloud.
We want to fit a surface on this point cloud. The approach can consider or neglect the fact that underlying object is a human face.
Any suggestion toward surface fitting will be appreciated.

回答 (1 件)

Joel Handy
Joel Handy 2019 年 8 月 12 日
Take a look at griddata and scatteredInterpolant
griddata Interpolates scattered data - generally to produce gridded data
Vq = griddata(X,Y,V, xq, yq) where xq is a row vector and yq is a
column vector, expands (xq, yq) via [Xq, Yq] = meshgrid(xq,yq).
[Xq, Yq, Vq] = griddata(X,Y,V, xq, yq) returns the grid coordinates
arrays in addition.
scatteredInterpolant performs interpolation on scattered data that
resides in 2-D or 3-D space. A scattered data set is defined by sample
points X and corresponding values v. A scatteredInterpolant object F
represents a surface of the form v = F(X). Interpolated values vq at
query points Xq are obtained by evaluating the interpolant, vq = F(Xq).

カテゴリ

Help Center および File ExchangePoint Cloud Processing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by