zoukankan      html  css  js  c++  java
  • 彩色图像分割的FLOOD FILL方法(源代码)

    2004年10月11日 10:49:00

    下面是OPENCV B4.0 附带的 FLOOD FILL 算法的源代码样例,可以实现简单的彩色图像分割。

    #ifdef _CH_
    #pragma package <opencv>
    #endif

    #ifndef _EiC
    #include "cv.h"
    #include "highgui.h"
    #include <stdio.h>
    #include <stdlib.h>
    #endif

    IplImage* color_img0;
    IplImage* mask;
    IplImage* color_img;
    IplImage* gray_img0 = NULL;
    IplImage* gray_img = NULL;
    int ffill_case = 1;
    int lo_diff = 20, up_diff = 20;
    int connectivity = 4;
    int is_color = 1;
    int is_mask = 0;
    int new_mask_val = 255;

    void on_mouse( int event, int x, int y, int flags )
    {
        if( !color_img )
            return;

        switch( event )
        {
        case CV_EVENT_LBUTTONDOWN:
            {
                CvPoint seed = cvPoint(x,y);
                int lo = ffill_case == 0 ? 0 : lo_diff;
                int up = ffill_case == 0 ? 0 : up_diff;
                int flags = connectivity + (new_mask_val << 8) +
                            (ffill_case == 1 ? CV_FLOODFILL_FIXED_RANGE : 0);
                int b = rand() & 255, g = rand() & 255, r = rand() & 255;
                CvConnectedComp comp;

                if( is_mask )
                    cvThreshold( mask, mask, 1, 128, CV_THRESH_BINARY );
               
                if( is_color )
                {
                    CvScalar color = CV_RGB( r, g, b );
                    cvFloodFill( color_img, seed, color, CV_RGB( lo, lo, lo ),
                                 CV_RGB( up, up, up ), &comp, flags, is_mask ? mask : NULL );
                    cvShowImage( "image", color_img );
                }
                else
                {
                    CvScalar brightness = cvRealScalar((r*2 + g*7 + b + 5)/10);
                    cvFloodFill( gray_img, seed, brightness, cvRealScalar(lo),
                                 cvRealScalar(up), &comp, flags, is_mask ? mask : NULL );
                    cvShowImage( "image", gray_img );
                }

                printf("%g pixels were repainted\n", comp.area );

                if( is_mask )
                    cvShowImage( "mask", mask );
            }
            break;
        }
    }

    int main( int argc, char** argv )
    {
        char* filename = argc >= 2 ? argv[1] : (char*)"fruits.jpg";

        if( (color_img0 = cvLoadImage(filename,1)) == 0 )
            return 0;

        printf( "Hot keys: \n"
                "\tESC - quit the program\n"
                "\tc - switch color/grayscale mode\n"
                "\tm - switch mask mode\n"
                "\tr - restore the original image\n"
                "\ts - use null-range floodfill\n"
                "\tf - use gradient floodfill with fixed(absolute) range\n"
                "\tg - use gradient floodfill with floating(relative) range\n"
                "\t4 - use 4-connectivity mode\n"
                "\t8 - use 8-connectivity mode\n" );
           
        color_img = cvCloneImage( color_img0 );
        gray_img0 = cvCreateImage( cvSize(color_img->width, color_img->height), 8, 1 );
        cvCvtColor( color_img, gray_img0, CV_BGR2GRAY );
        gray_img = cvCloneImage( gray_img0 );
        mask = cvCreateImage( cvSize(color_img->width + 2, color_img->height + 2), 8, 1 );

        cvNamedWindow( "image", 0 );
        cvCreateTrackbar( "lo_diff", "image", &lo_diff, 255, NULL );
        cvCreateTrackbar( "up_diff", "image", &up_diff, 255, NULL );

        cvSetMouseCallback( "image", on_mouse );

        for(;;)
        {
            int c;
           
            if( is_color )
                cvShowImage( "image", color_img );
            else
                cvShowImage( "image", gray_img );

            c = cvWaitKey(0);
            switch( c )
            {
            case '\x1b':
                printf("Exiting ...\n");
                goto exit_main;
            case 'c':
                if( is_color )
                {
                    printf("Grayscale mode is set\n");
                    cvCvtColor( color_img, gray_img, CV_BGR2GRAY );
                    is_color = 0;
                }
                else
                {
                    printf("Color mode is set\n");
                    cvCopy( color_img0, color_img, NULL );
                    cvZero( mask );
                    is_color = 1;
                }
                break;
            case 'm':
                if( is_mask )
                {
                    cvDestroyWindow( "mask" );
                    is_mask = 0;
                }
                else
                {
                    cvNamedWindow( "mask", 0 );
                    cvZero( mask );
                    cvShowImage( "mask", mask );
                    is_mask = 1;
                }
                break;
            case 'r':
                printf("Original image is restored\n");
                cvCopy( color_img0, color_img, NULL );
                cvCopy( gray_img0, gray_img, NULL );
                cvZero( mask );
                break;
            case 's':
                printf("Simple floodfill mode is set\n");
                ffill_case = 0;
                break;
            case 'f':
                printf("Fixed Range floodfill mode is set\n");
                ffill_case = 1;
                break;
            case 'g':
                printf("Gradient (floating range) floodfill mode is set\n");
                ffill_case = 2;
                break;
            case '4':
                printf("4-connectivity mode is set\n");
                connectivity = 4;
                break;
            case '8':
                printf("8-connectivity mode is set\n");
                connectivity = 8;
                break;
            }
        }

    exit_main:

        cvDestroyWindow( "test" );
        cvReleaseImage( &gray_img );
        cvReleaseImage( &gray_img0 );
        cvReleaseImage( &color_img );
        cvReleaseImage( &color_img0 );
        cvReleaseImage( &mask );

        return 1;
    }

    #ifdef _EiC
    main(1,"ffilldemo.c");
    #endif



    Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=131783


  • 相关阅读:
    PHP中利用jQuery操作json格式数据,实现$_POST的数据传输和接收
    如何快速掌握一门技术【婴儿最强学习回头看一看】
    显示桌面.scf
    注册表数据库
    win10home_fixgpedit.msc
    Eclipse 中 jetty 调试模式(debug)正常启动无法访问;非调试模式正常
    svn中的与资源库同步操作 讲解
    windows下二进制mysql的卸载以及安装教程
    mysql服务正在启动或停止中请稍后片刻再试一次,服务强制杀死的方法
    Eclipse中git检出、更新、提交、合并分支、以及解决冲突
  • 原文地址:https://www.cnblogs.com/feisky/p/1586548.html
Copyright © 2011-2022 走看看