图像灰度值调整(C/C++源代码)

//
// perform histgram equalization for single channel image
//

#include "cv.h"
#include "highgui.h"


int ImageAdjust(IplImage* src, IplImage* dst,
               double low, double high,   // lowand high are the intensities of src
               double bottom, double top, // mapped to bottom and top of dst
               double gamma )
{
    double low2= low*255;
    double high2= high*255;
    doublebottom2 = bottom*255;
    double top2= top*255;
    doubleerr_in = high2 - low2;
    doubleerr_out = top2 - bottom2;

    intx,y;
    doubleval;

    if(low<0 && low>1 && high <0 &&high>1 && bottom<0 && bottom>1 &&top<0 && top>1)
       return 1;
   
    // intensitytransform
    for( y = 0;y < src->height; y++)
    {
       for (x = 0; x < src->width; x++)
       {
           val = ((uchar*)(src->imageData + src->widthStep*y))[x];
           val = pow((val - low2)/err_in, gamma) * err_out + bottom2;
           if(val>255) val=255; if(val<0) val=0; // Make sure src is inthe range [low,high]
           ((uchar*)(dst->imageData + dst->widthStep*y))[x] = (uchar)val;
       }
    }
    return0;
}


本文转自feisky博客园博客,原文链接:http://www.cnblogs.com/feisky/archive/2008/04/11/1586553.html,如需转载请自行联系原作者

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值