我正在处理从两个图像中获取的深度图(我从 opencv StereoBM 获取),现在我需要在其中找到集群我决定使用 pcl 区域增长分割http://www.pointclouds.org/documentation/tutorials/ region_growth_segmentation.php。在阅读了这篇文章http://blog.martinperis.com/2012/01/3d-reconstruction-with-opencv-and-point.html后,我将 cv::Mat 转换为点云,现在我有集群索引这在这里起作用https://gist.github.com/Daiver/5586252 现在我想使用这些索引在来自 StereoBM (cv::Mat) 的深度图上显示集群
我正在尝试这个,但我对结果不满意
pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud; //cloud from depth map and rgb image
std::vector <pcl::PointIndices> clusters;// clusters inices, extracted before
for(int j = 0; j < clusters.size(); j++)
{
cv::Mat to_show = cv::Mat::zeros(288, 384, cv::DataType<uchar>::type);//image has size that equal size of rgb image and depth map
for(int i = 0; i < clusters[j].indices.size(); i++)
{
to_show.data[clusters[j].indices[i]] = 200;// regions in this Mat must be equal with regions from depth map
}
cv::imshow("", to_show);
cv::waitKey();
}
结果 一些集群 另一个集群
可视化云
我如何将集群投影到 cv::Mat?PS对不起我的写作错误。非我母语的英语
UPD 我尝试通过使用循环(如 mat_to_cloud 函数中的循环)来“恢复”深度图
int counter = 0;
cv::Mat to_show = cv::Mat::zeros(288, 384, cv::DataType<uchar>::type);
for(int i = 0; i < cloud->height; i++)
{
for(int j = 0; j < cloud->width; j++)
{
to_show.at<uchar>(i, j) = cloud->at(counter).z;
counter++;
}
}
另一个循环顺序 int counter = 0; cv::Mat to_show = cv::Mat::zeros(288, 384, cv::DataType::type); for(int j = 0; j < cloud->width; j++) { for(int i = 0; i < cloud->height; i++) { to_show.at(i, j) = cloud->at(counter) .z; 计数器++;} }
我不知道为什么这些图像很相似