resize_image 图像放缩函数



void resize_RGB(BYTE* src, BYTE* rgb,int width, int height, int dWidth,int dHeight)

{

       //src原始图片数据,rgb处理后图片数据

int ifX, ifY,x, y;//,t,x3;
int ix,iy;


int step = width*3;//图像宽度
BYTE* prgb = rgb;//图像头数据
BYTE* psrc;


float fY,fX;
float wscale = (float)width/dWidth;//缩放比例
float hscale = (float)height/dHeight;


fY = 0;//初始化为0
for (y=0; y {
fY +=  hscale;//高度缩放比例
ifY = fY;


iy=ifY*step;


fX=0;//初始化0
for(x=0; x {
fX += wscale;//宽度比例
ifX = fX;
ix = ifX*3;


psrc = src+ix+iy;//像素值
*prgb++= *psrc++;
*prgb++= *psrc++;
*prgb++= *psrc++;
}
}
}

你可能感兴趣的:(OpenCV)