findView
Description
Examples
Find View Corresponding to View ID
Create an empty point cloud view set.
vSet = pcviewset;
Add two views to the view set.
viewId1 = 10;
viewId2 = 5;
ptCloud1 = pcread("teapot.ply");
ptCloud2 = pctransform(ptCloud1,rigidtform3d([0 0 0],[2 0 0]));
vSet = addView(vSet,viewId1,PointCloud=ptCloud1);
vSet = addView(vSet,viewId2,PointCloud=ptCloud2);
Find the view associated with the view identifier 5,
and then display the view table.
view = findView(vSet,5); disp(view)
ViewId AbsolutePose PointCloud ______ ________________ ______________ 5 1×1 rigidtform3d 1×1 pointCloud
Get the point cloud that corresponds to view identifier 5
.
ptCloud = view.PointCloud;
Get the absolute pose associated with view identifier 5
.
absPose = view.AbsolutePose;
Input Arguments
vSet
— Point cloud view set
pcviewset
object
Point cloud view set, specified as a pcviewset
object.
viewIds
— View identifier
M-element vector
View identifiers, specified as an M-element vector of integers. View identifiers are unique to a specific view.
Output Arguments
views
— Table containing view attributes
three-column table
Table containing view attributes, specified as a three-column table. The table
contains the columns ViewId
, AbsolutePose
, and
pointCloud
attribute descriptions.
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.
Version History
Introduced in R2021b
Abrir ejemplo
Tiene una versión modificada de este ejemplo. ¿Desea abrir este ejemplo con sus modificaciones?
Comando de MATLAB
Ha hecho clic en un enlace que corresponde a este comando de MATLAB:
Ejecute el comando introduciéndolo en la ventana de comandos de MATLAB. Los navegadores web no admiten comandos de MATLAB.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)