我正在從兩幅圖像(我從opencv StereoBM獲取它)獲取深度圖,現在我需要找到它們中的簇 我決定使用pcl區域生長分割http://www.pointclouds.org/documentation/tutorials/region_growing_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)使用rgb圖像中的點雲聚簇索引
我想這一點,但我不太滿意的結果
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 我tryed通過使用類似的循環迴路中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計數器「恢復」深度圖= 0; cv :: Mat to_show = cv :: Mat :: zeros(288,384,cv :: DataType :: type); 對(INT J = 0;Ĵ<雲>寬度; J ++){ 爲 (INT I = 0;我<雲>高度;我++){ to_show.at(I,J)=雲>在(計數器).Z; counter ++; }}
我不知道爲什麼這些圖像類似於
究竟對結果是錯誤的或你不喜歡?另外,截圖中的哪張圖片顯示了什麼? – Sarien
我想在深度圖中看到獨立的羣集。像單頭或單燈或單個相機 –
這就是你想要的,但是你的結果是什麼以及它有什麼問題? – Sarien