Giter VIP home page Giter VIP logo

cbbs's Introduction

Implementation of Codebook background subtraction

Kyungnam Kima, Thanarat H. Chalidabhongse, David Harwood, Larry Davis. Real-time foreground–background segmentation using codebook model.

http://www.umiacs.umd.edu/~knkim/paper/Kim-RTI2005-FinalPublished.pdf

Usage

// OpenCV example:
int main()
{
    CBModel model(50, COLOR_TYPE_BGR, 0.5, 1.5, 10, 10, true);
    model.setCBUpdateParam(300, 300);

    VideoCapture cap(0);
    int w = cap.get(CV_CAP_PROP_FRAME_WIDTH);
    int h = cap.get(CV_CAP_PROP_FRAME_HEIGHT);

    Mat colorImg;
    Mat blured;
    Mat mask;

    mask.create(Size(w, h), CV_8U);

    while(1)
    {
        cap >> colorImg;

        GaussianBlur(colorImg, blured, cv::Size(7,7), 1.5,  1.5);

        if (model.process(blured.data, w, h, mask.data) != CODEBOOK_FLAG_DETECT)
            continue;
        imshow("Mask", mask);

        noiseRemove(mask.data, w, h, 3);
        imshow("Mask_noise_remove", mask);

        medianFilterBinary(mask.data, w, h, 15);
        imshow("Mask_medin", mask);

        imshow("Frame", colorImg);

        if(waitKey(10) == 27)
        break;
    }

    releaseCBModel(model);
    return 0;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.