我有一个关于 OpenCV 的分割方法的问题,即金字塔分割(在 中找到opencv2/imgproc/imgproc_c.h
)
我不知道如何从分段区域访问点。
我目前正在做的是:
cvPyrSegmentation(image, image_seg, storage, &comp, level, threshold1, threshold2);
for (unsigned int cur_seg = 0; cur_seg < total_segments; ++cur_seg) {
CvConnectedComp* cc = (CvConnectedComp*) cvGetSeqElem(comp, cur_seg);
// Missing part to access points from this segment
}
我找不到太多关于如何从每个cc
元素访问点的信息。建议将不胜感激。
谢谢你。
PS 出于某种原因,C++ 版本的金字塔分割在 OpenCV 的更高版本(>2.3)中不支持,因此需要 C 实现。