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 1x1 rigidtform3d 1x1 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
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
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)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)