主要内容

removeCorrespondences

从世界点集中去除3-D到2-D的对应

描述

例子

wpSet= removeCorrespondences (wpSetviewIdpointIndices移除指定的三维世界点之间的对应关系pointIndices和指定视图的二维特征点viewId从世界的角度出发。

例子

全部折叠

生成三维世界点。

worldPoints =兰德(100 3);

创建一个worldpointset对象。

wpSet = worldpointset;

添加世界点。

wpSet = addWorldPoints (wpSet worldPoints);

为视图添加通信。

viewId = 1;pointIndices = 1:10;featureIndices = 1:10;wpSet = addCorrespondences (wpSet viewId、pointIndices featureIndices);

删除前5个通信。

pointIndices = 1:5;wpSet = removeCorrespondences (wpSet viewId pointIndices);

输入参数

全部折叠

世界点集,指定为worldpointset对象。

视图标识符,指定为标量。

世界点指数,指定为-元素的整数列向量。是要删除通信的世界点的数目。

输出参数

全部折叠

世界点设置,返回为worldpointset对象。

介绍了R2020b