Filter löschen
Filter löschen

Cannot add 'custom' model with addMesh() as the only two options are 'polygon' and 'cylinder'

2 Ansichten (letzte 30 Tage)
Hi,
for my dissertation I need to place custom models in a uav scenario to collect LIDAR data. In the documentation it says that it is possible to add custom models by supplying the vertice list and the vertice connectivity list using addMesh(scene,'custom',{vertices,faces}) but when running the code an error pops up saying
Expected type to match one of these values:
'polygon', 'cylinder'
The input, 'custom', did not match any of the valid values.
Does the package not support custom models anymore? I checked the code and it only includes the two options mentioned above, is there a way to get an older version of the code that allows custom models?
Thank you.
  2 Kommentare
Jianxin Sun
Jianxin Sun am 2 Dez. 2021
Hi, Gianluca,
What MATLAB version are you using? "custom" option is added in R2021a.
Thanks,
Jianxin
Gianluca Traversa
Gianluca Traversa am 4 Dez. 2021
Hi Jianxin,
Thanks for the speedy reply, issue solved. I would like to suggest adding support to simply provide a .stl file in the addMesh() instead of having to extract the vertices and connectivity list for easier use using custom models. I am assuming this is easier when using the Simulink Unreal Engine simulation but for mac users unfortunately this is not an option.
Thank you,
Gianluca

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Jianxin Sun
Jianxin Sun am 3 Apr. 2023
Starting from R2021a, user can use stlread to import stl files into MATLAB and use addMesh custom option to add the model into uavScenario. See code sample below:
scene = uavScenario;
stltri = stlread("multirotor.stl");
addMesh(scene, "custom", {stltri.Points, stltri.ConnectivityList}, [1, 0, 0]);
show3D(scene)

Weitere Antworten (0)

Tags

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by