1. 程式人生 > >Two-Pass演算法——影象連通域分析

Two-Pass演算法——影象連通域分析

在處理二值影象,提取感興趣目標時經常需要通過連通域的大小對候選目標進行初步篩選。OpenCV中findContour 方法可以返回輪廓並能夠計算輪廓面積。可其侷限性在對於非凸多邊形的面積計算是不準確的。 此時,利用連通域計算面積的方法更可靠,然而 findContour方法並不返回連通域結果。

其中,Two-Pass法步驟簡單,易於理解。但是該博文的實現演算法存在Bug, 會將連通的區域分割成不同標籤。測試圖如下:
這裡寫圖片描述

使用其連通區域的結果如下:
這裡寫圖片描述

不難發現,第二、四字元的連通區域計算出現了錯誤。 出錯的原因是在於連通域的等價表上面。(equivalences )

其方法利用一維列表結構儲存等價關係。例如存在一個具有等價性的標籤組:{ 1,3,5,7};
則可以用一維陣列表示: a[7] = 5, a[5] = 3, a[3] = 1,a[1] = 1, 或者更高效地是 a[7] = 1, a[5] = 1, a[3] = 1, a[1] = 1。 而前者的方式可以更準確地傳遞等價性,因為大多數時候 7 與 1 , 5 與1 的關係並不明確,或者很難獲知。相對地, 3 與 1, 5 與 3 , 7 與 5的關係 更容易獲得。 原因在於其標籤值相近,代表空間相近,繼而可通過鄰域判斷連通性。這裡理解有困難可看這裡

Wiki: Connected-component labeling

具體上面提到的參考演算法的bug不細表,給出我的實現方法。

  1. 主演算法
bool twoPass(cv::Mat pBinary, int background,int foreground, int border, cv::Mat& pLabel)
{
    // connected component analysis (4- component)  
    // use two-pass algorithm  
    // 1. first pass: label each foreground pixel with a label  
// 2. second pass: visit each labeled pixel and merge neighbor labels if (pBinary.empty() || pBinary.channels() != 1) return false; int width = pBinary.cols; int height = pBinary.rows; pLabel.release(); pBinary.convertTo(pLabel, CV_32SC1); int *data = pLabel.ptr<int
>(0); for (int i = 0; i < width*height; i++) if (foreground == data[i]) data[i] = 1; else data[i] = 0; int label = 1; //labelSet 連通域列表 比如連通佇列{1,3,5,7} labelSet[7] = 5, labelSet[5] = 3, labelSet[3] = 1, labelSet[1] = 1 vector<int> labelSet; labelSet.push_back(0); labelSet.push_back(1); border = MAX(1, border); for (int i = border; i < height -border; i++) { int* curRowData = pLabel.ptr<int>(i); int* preRowData = pLabel.ptr<int>(i - 1); for (int j = border; j < width - border; j++) { int* cur_data = curRowData + j; if (0 == *cur_data) continue; int* left_data = curRowData + j - 1; int* up_data = preRowData + j; int* right_up_data = preRowData + j + 1; int* left_up_data = preRowData + j - 1; if (90 == i && 125 == j) cout << "stop" << endl; vector<int> neighborLabels; if (*left_data > 1) neighborLabels.push_back(*left_data); if (*up_data > 1) neighborLabels.push_back(*up_data); // if (*right_up_data > 1) // neighborLabels.push_back(*right_up_data); // if (*left_up_data > 1) // neighborLabels.push_back(*left_up_data); if ( neighborLabels.empty() ) { labelSet.push_back(++label); *cur_data = label; labelSet[label] = label; } else { sort(neighborLabels.begin(), neighborLabels.end()); *cur_data = neighborLabels[0]; for (size_t k = 1; k < neighborLabels.size(); k++) { int tmpLabel = neighborLabels[k]; int oldLabel = labelSet[tmpLabel]; if (oldLabel > *cur_data) { // 這裡是關鍵 while ( oldLabel != tmpLabel) { int tmp = tmpLabel; tmpLabel = oldLabel; oldLabel = labelSet[tmpLabel]; labelSet[tmp] = *cur_data; } if (tmpLabel > *cur_data) labelSet[tmpLabel] = *cur_data; else labelSet[*cur_data] = tmpLabel; } else if (oldLabel < *cur_data ) // 該有時語句不執行 { labelSet[*cur_data] = oldLabel; // 後面的Label是有前面的 data決定的 //*cur_data = oldLabel; } } } // neighbors } // j } // i // 2. second pass // input : {1,3,5,7} labelSet[7] = 5, labelSet[5] = 3, labelSet[3] = 1, labelSet[1] = 1 // out : labelSet[7] = 1, labelSet[5] = 1, labelSet[3] = 1, labelSet[1] = 1 for (size_t i = 2; i < labelSet.size(); i++) { if ( i == labelSet[i] ) continue; int cur_label = labelSet[i]; int pre_label = labelSet[cur_label]; while (pre_label != cur_label) { cur_label = pre_label; pre_label = labelSet[pre_label]; } labelSet[i] = cur_label; } cout <<"label : "<< labelSet.size() << endl; for (int i = 0; i < height; i++) { int* data = pLabel.ptr<int>(i); for (int j = 0; j < width; j++) { int& pixelLabel = data[j]; pixelLabel = labelSet[pixelLabel]; } } return true; }

結果:
這裡寫圖片描述

2、 有條件選擇連通域標籤

void thresholdLabel(const cv::Mat& _labelImg, vector<int>& _labelList)
{
    if (_labelImg.empty() || _labelImg.type() != CV_32SC1)
        return;

    std::map<int,int> labelCount;

    int rows = _labelImg.rows;
    int cols = _labelImg.cols;

    for (int i = 0; i < rows; i++)
    {
        const int* data_src = (int*)_labelImg.ptr<int>(i);
        for (int j = 0; j < cols; j++)
        {
            int pixelValue = data_src[j];
            if (0 == pixelValue) continue;

            if (labelCount.count(pixelValue) <= 0)
                labelCount[pixelValue] = 1;
            else
                labelCount[pixelValue]++;

        }
    }
    std::map<int, int>::iterator st = labelCount.begin();
    std::map<int, int>::iterator  et = labelCount.end();
    for (; st != et; ++st)
    {
        if (st->second < 100 ) continue;  // 連通域小於100,忽略
        _labelList.push_back(st->first);
        cout << "label " << st->first << ": " << st->second<<endl;
    }
}

3、 隨機著色

cv::Scalar randColor()
{
    uchar r = 255 * (rand() / (1.0 + RAND_MAX));
    uchar g = 255 * (rand() / (1.0 + RAND_MAX));
    uchar b = 255 * (rand() / (1.0 + RAND_MAX));
    return cv::Scalar(b, g, r);
}

void getLabelColor(const cv::Mat& _labelImg, vector<int>_labelList, cv::Mat& _colorLabelImg)
{
    if (_labelImg.empty() || _labelImg.type() != CV_32SC1 || _labelList.empty())
        return;

    std::map<int, cv::Scalar> colors;

    int rows = _labelImg.rows;
    int cols = _labelImg.cols;

    _colorLabelImg.release();
    _colorLabelImg.create(rows, cols, CV_8UC3);
    _colorLabelImg = cv::Scalar::all(0);

    for (int i = 0; i < rows; i++)
    {
        const int* data_src = (int*)_labelImg.ptr<int>(i);
        uchar* data_dst = _colorLabelImg.ptr<uchar>(i);
        for (int j = 0; j < cols; j++)
        {
            int pixelValue = data_src[j];

            vector<int>::iterator  it = find(_labelList.begin(), _labelList.end(), pixelValue);
            if (it == _labelList.end())
            {
                data_dst++;
                data_dst++;
                data_dst++;

                continue;
            }

            if (pixelValue > 1)
            {
                if (colors.count(pixelValue) <= 0)
                {
                    colors[pixelValue] = randColor();
                }
                cv::Scalar color = colors[pixelValue];
                *data_dst++ = color[0];
                *data_dst++ = color[1];
                *data_dst++ = color[2];
            }
            else
            {
                data_dst++;
                data_dst++;
                data_dst++;
            }
        }
    }
}

更多結果:
原圖
原由

結果:
這裡寫圖片描述

此文僅討論Two-Pass 實現問題。Two-Pass 方法相較於SeedFill ,運算效率比較低。

完。

                                                        Lewis, 2018-06-24