天天看點

CloudCompare中常見資料結構

cc

  1. ccHObject::Container //
  2. CCLib::Neighbourhood //
  3. CCLib::SquareMatrixd //

常見點雲類型及作用:

  1. ccGenericPointCloud // 包含RGB顔色、法線等特性的點雲結構;
  2. ccPointCloud
  3. ChunkedPointCloud
  4. CCLib::ReferenceCloud* rc = getTheVisiblePoints();
ccPointCloud* result = 0;
{
	CCLib::ReferenceCloud* rc = getTheVisiblePoints();
	result = partialClone(rc);
}

           

// 通用點雲接口用于庫和應用程式之間的通信

class CC_CORE_LIB_API GenericCloud;

// 具有效率的點雲資料結構,能夠處理無線數量的标量字段

template class PointCloudTpl

繼續閱讀