示例#1
0
void PointCloud::AddPointCloud(PointCloud pc)
{
	Mat in = pc.GetMatrix();
	cloud->resize(rows + in.rows);
	cv::Mat tmp = (*cloud)(cv::Rect(0,rows,6,in.rows));
	in.copyTo(tmp);
	rows = cloud->rows;
}