How to write pcwrite into the for loop and ensure that the output point cloud is changed at the same time the file name is changed?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
锡秋 陈
el 26 de Ag. de 2021
Comentada: 锡秋 陈
el 28 de Ag. de 2021
for i=1:number_gridx-1
a=string(i)
pcwrite(ptCloudC,'a','PLYFormat','binary');
end
0 comentarios
Respuesta aceptada
Walter Roberson
el 26 de Ag. de 2021
for i = 1:number_gridx-1
ptCloudC = something appropriate that changes as i changes
filename = i + ".ply";
pcwrite(ptCloudC, filename, 'PLYFormat', 'binary');
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Point Cloud Processing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!