1

人のシルエットを未知のビデオストリームから分離しようとしています。(ユーザーのウェブカメラ)、を使用しC++/Cinder/OpenCVます。輪郭を特定して描画することはできますが、人全体の輪郭を取得するのではなく、要素(髪、目など)だけを取得します。

私が使用しているのは、BackgroundSubtractorMOG2を使用して背景を削除することです。ノイズを取り除くためにぼかします。適応しきい値。特定の複雑さで輪郭を見つけて描画します。

コード:

Surface surface;
surface = mCapture.getSurface();

// To texture for display
textureCapture = Texture( surface );

    // Greyscale
    Mat matGrey( toOcv( surface ) );

    // Output
    Mat matForeground, matBackground;

    // Build foreground & background
    mog( matGrey, matForeground, -1 );
    mog.getBackgroundImage( matBackground );

// Build countours
Mat matContourTemp = matForeground.clone();

    // Blur to remove noise
    Mat matBlurred = matContourTemp.clone();
    cv::GaussianBlur( matContourTemp, matBlurred, cv::Size( 9, 9 ), 0 );

    textureBlurred = Texture( fromOcv( matBlurred ) );

    // Adaptive threshold
    Mat matThresh = matContourTemp.clone();
    adaptiveThreshold( matBlurred, matThresh, 255, CV_ADAPTIVE_THRESH_MEAN_C, CV_THRESH_BINARY, 3, 0 );

    textureThreshold = Texture( fromOcv( matThresh ) );

    // Contours
    vector<cv::Vec4i> hierarchy;

        // Find
        contours.clear();
        findContours( matThresh, contours, hierarchy, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, cv::Point( 0, 0 ) );

        // Draw contours
        Mat matContourImage( matForeground.size(), CV_8UC3, cv::Scalar( 0, 0, 0 ) );

        Scalar colors[ 3 ];
        colors[ 0 ] = Scalar( 255, 255, 255 );

        for( size_t idx = 0; idx < contours.size(); idx++){

            if( contours[ idx ].size() > 40 ){

                cv::drawContours(
                        matContourImage, contours, idx,
                        colors[ 0 ], -3,
                        100,
                        hierarchy,
                        0,
                        cv::Point( 0, 0 ) );
                };
    };
    textureContour = Texture( fromOcv( matContourImage ) );

出力:(私はここでは若すぎて画像を投稿できません)

http://barnabysheeran.com/outgoing/stackoverflow/ss_1.png http://barnabysheeran.com/outgoing/stackoverflow/ss_2.png

全身いっぱいのシルエットにしたいと思います。

4

1 に答える 1