拉格朗日插值(Lagrange)图像缩放

1. 插值方法简介

  通过诸如采样、实验等方法获得若干离散的数据,根据这些数据,我们往往希望得到一个连续的函数(也就是曲线)或者更加密集的离散方程与已知数据相吻合,这过程就叫做拟合。通过拟合得到的函数获得未知点的数据的方法,叫做插值。
  插值方法在图像领域的一个典型应用就是实现图像缩放,即调整图片尺寸。

2. Lagrange插值

2.1 原理

  对于 n + 1 n+1 n+1个数据点 { ( x 0 , y 0 ) , ( x 1 , y 1 ) , . . . , ( x n , y n ) } \{(x_0,y_0),(x_1,y_1),...,(x_n,y_n)\} {(x0,y0),(x1,y1),...,(xn,yn)},我们定义 n n n次多项式插值的Lagrange公式
L n ( x ) = ∑ i = 0 n y i l i ( x ) \begin{aligned} L_n(x)=\sum_{i=0}^{n}y_il_i(x) \end{aligned} Ln(x)=i=0nyili(x)
其中, l i ( x ) = ( x − x 0 ) ( x − x 1 ) . . . ( x − x i − 1 ) ( x − x i + 1 ) . . . ( x − x n ) ( x i − x 0 ) ( x i − x 1 ) . . . ( x i − x i − 1 ) ( x i − x i + 1 ) . . . ( x i − x n ) l_i(x)=\frac{(x-x_0)(x-x_1)...(x-x_{i-1})(x-x_{i+1})...(x-x_n)}{(x_i-x_0)(x_i-x_1)...(x_i-x_{i-1})(x_i-x_{i+1})...(x_i-x_n)} li(x)=(xix0)(xix1)...(xixi1)(xixi+1)...(xixn)(xx0)(xx1)...(xxi1)(xxi+1)...(xxn)称为 n n n次多项式插值问题的基函数(Lagrange因子)。

2.2 例子

  已知 100 = 10 , 121 = 11 , 144 = 12 \sqrt{100}=10,\sqrt{121}=11,\sqrt{144}=12 100 =10121 =11144 =12,试用Lagrange插值公式求 125 \sqrt{125} 125 的近似值。
  选取 x 0 = 100 , x 1 = 121 , x 2 = 144 , y 0 = 10 , y 1 = 11 , y 2 = 12 x_0=100,x_1=121,x_2=144,y_0=10,y_1=11,y_2=12 x0=100x1=121x2=144y0=10y1=11y2=12,可得
L 2 ( x ) = 10 ∗ ( x − 121 ) ( x − 144 ) ( 100 − 121 ) ( 100 − 144 ) + 11 ∗ ( x − 100 ) ( x − 144 ) ( 121 − 100 ) ( 121 − 144 ) + 12 ∗ ( x − 100 ) ( x − 121 ) ( 144 − 100 ) ( 144 − 121 ) \begin{aligned} L_2(x)=10*\frac{(x-121)(x-144)}{(100-121)(100-144)}+11*\frac{(x-100)(x-144)}{(121-100)(121-144)}+12*\frac{(x-100)(x-121)}{(144-100)(144-121)} \end{aligned} L2(x)=10(100121)(100144)(x121)(x144)+11(121100)(121144)(x100)(x144)+12(144100)(144121)(x100)(x121)
于是, 125 ≈ L 2 ( 125 ) = 11.18107 \sqrt{125}\approx L_2(125)=11.18107 125 L2(125)=11.18107

3. Lagrange插值实现图像缩放

3.1 说明

  Lagrange插值实现图像缩放就是用已知的像素点根据公式去估计目标尺寸的像素矩阵中未知的像素点取值。
  使用C语言实现了BMP格式的灰度图、彩色图的文件读取、Lagrange插值图片指定尺寸缩放、图片保存等功能。代码中函数调用关系图如图1所示,Lagrange函数流程图如图2所示,使用的灰度图测试样例如图3所示,彩色图测试样例如图4所示。
在这里插入图片描述

图1 函数调用关系图

在这里插入图片描述

图2 Lagrange函数流程图

在这里插入图片描述

图3 灰度图测试样例

在这里插入图片描述

图4 彩色图测试样例

3.2 代码

#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <math.h>

typedef  unsigned char  uint8;
typedef  unsigned short uint16;
typedef  unsigned int   uint32;

#pragma  pack(1)
typedef struct{ 
    //文件头 
    uint16 bfType;         // BM
    uint32 bfSize;         //文件大小
    uint16 bfReserved1;    //未使用,全0 
    uint16 bfReserved2;    //未使用,全0 
    uint32 bfOffBits;      //文件头偏移量,灰度图54+1024,彩色图像54 

    //信息头 
    uint32 biSize;         //信息头大小
    uint32 biWidth;        //图像宽度
    uint32 biHeight;       //图像高度
    uint16 biPlanes;       
    uint16 biBitCount;     //每个相素点的位数,8(灰度图像),24(彩色图像) 
    uint32 biCompression;
    uint32 biSizeImage;    //图像尺寸(灰度图像[biWidth/4]*4*biHeight),(彩色图像[bi]) 
    uint32 biXPelsPerMeter;
    uint32 biYPelsPerMeter;
    uint32 biClrUsed;      //灰度256,彩色0 
    uint32 biClrImportant;
}BMP_HEADER;

void Lagrange(uint16 bpp,uint8 data[],uint8 y[],uint32 source_Width,uint32 source_Height,uint32 target_Width,uint32 target_Height,uint32 num_SamplePoint,uint32 stride_Source);
BMP_HEADER get_Image(char image_Name[],uint8 data[]);
void write_Image(char image_Name[],uint8 y[],BMP_HEADER header,int target_Width,int target_Height);
void print_BMPHEADER(BMP_HEADER header);

int main() {
	BMP_HEADER header;
	int fd = -1;
	char image_Name[256];
	static uint8 data[2048*2048*30],y[2048*2048*30];
	uint32 target_Width = 0,target_Height = 0,num_SamplePoint = 0,stride_Source = 0;
	while(1) {
		printf("**********************************************************************\n"); 
		printf("请输入待缩放的图片名(输入0结束程序):");
		//输入要缩放的图像名
		scanf("%s",image_Name);
		if(strcmp(image_Name,"0") == 0) {
			//结束 
			return 0;
		}
		printf("请指定目标图像尺寸(宽度、高度):");
		//输入目标图像尺寸
		scanf("%d%d",&target_Width,&target_Height);
		printf("请指定插值所需样本点数:");
		//输入插值所需样本点数 
		scanf("%d",&num_SamplePoint);
		//读取待缩放图片 
		header = get_Image(image_Name,data);
		//计算待缩放图像每行的元素个数 
		stride_Source = header.biSizeImage / header.biHeight;
		//进行拉格朗日插值 
		Lagrange(header.biBitCount,data,y,header.biWidth,header.biHeight,target_Width,target_Height,num_SamplePoint,stride_Source);
		//将处理好的图像数据保存 
		write_Image(image_Name,y,header,target_Width,target_Height);
	}
}


void Lagrange(uint16 bpp,uint8 data[],uint8 y[],uint32 source_Width,uint32 source_Height,uint32 target_Width,uint32 target_Height,uint32 num_SamplePoint,uint32 stride_Source) {
	//bpp表示图像类型(8为灰度图,24为彩色图像)
	//data用来存储像素信息
	//source_Width,source_Height,target_Width,target_Height分别表示源图像宽度,源图像高度,目标图像宽度,目标图像高度
	//num_SamplePoint表示插值所需样本点数,stride_Source表示像素矩阵的列数 
	if(bpp == 8) {
		//处理灰度图
		int i = 0,j = 0,stride_target = (target_Width+3)/4*4,p = 0;
		for(i=0;i<target_Height;i++) {
			static int set[2048*2048*10] = {0};
            static double g[2048*2048*10] = {0.0};
			for(j=0;j<stride_target;j++) {
				//对每个像素点进行拉格朗日插值 
				g[j] = g[0] + (double)j*(double)(stride_Source-1)/(double)(stride_target-1);
				int floor;
				//求距离该点最近的指定个数的样本点数组下标 
				if(num_SamplePoint%2==0) {
					floor = (int)g[j];
					floor -= (num_SamplePoint-2)/2;
				}
				else {
					floor = round(g[j]);
					floor -= (num_SamplePoint-1)/2;
				}
				for(p=0;p<num_SamplePoint;p++) {
					set[p] = floor;
					floor++;
				}
				double temp = 0;
				int flag = 0;
				for(p=0;p<num_SamplePoint;p++) {
					double l = 1.0;
					int q = 0;
					//计算拉格朗日插值因子 
					for(q=0;q<num_SamplePoint;q++) {
						double a=set[q],b=set[p];
						if(a!=b) {
							l = l * (g[j]-a)/(b-a);
					    }
					}
					double a=source_Height,b=target_Height;
					double c = (double)i * (double)(a - 1) / (double)(b - 1);
					int index = round(c);
					if(set[p] < 0) {
						set[p] = 0 - set[p];
						flag = 1;
					}
					index = index * stride_Source + set[p];
					//插值求和 
					temp += l*(double)data[index];
					if(flag==1) {
						set[p] = 0 - set[p];
						flag = 0;
					}
				}
				//保存插值结果 
				y[i*stride_target+j] = (uint8)temp;
		    }
		} 
	}
	else if(bpp == 24) {
		//处理彩色图片
		int i = 0,j = 0,stride_target = (target_Width*3+3)/4*4,p = 0,k = 0;
		for(i=0;i<target_Height;i++) {
			for(k=0;k<3;k++) {
				static int set[2048*2048*4] = {0};
            	static double g[2048*2048*4] = {0.0};
            	static uint8 fictitious_y[2048*2048*4] = {0};
            	//提取出一行中相同颜色的像素点(RGB) 
            	for(j=0;j<stride_Source;j++) {
            		double c = (double)i * (double)(source_Height - 1) / (double)(target_Height - 1);
            		int index = round(c);
            		fictitious_y[j] = data[index*stride_Source+3*j+k];
				}
				for(j=0;j<stride_target/3;j++) {
					//对每个像素点进行拉格朗日插值 
					g[j] = g[0] + (double)j*(double)(stride_Source/3-1)/(double)(stride_target/3-1);
					int floor;
					//求距离该点最近的指定个数的样本点数组下标 
					if(num_SamplePoint%2==0) {
						floor = (int)g[j];
						floor -= (num_SamplePoint-2)/2;
					}
					else {
						floor = round(g[j]);
						floor -= (num_SamplePoint-1)/2;
					}
					for(p=0;p<num_SamplePoint;p++) {
						set[p] = floor;
						floor = floor + 1;
					}
					double temp = 0;
					int flag = 0;
					for(p=0;p<num_SamplePoint;p++) {
						double l = 1.0;
						int q = 0;
						//计算拉格朗日插值因子 
						for(q=0;q<num_SamplePoint;q++) {
							double a=set[q],b=set[p];
							if(a!=b) {
								l = l * (g[j]-a)/(b-a);
					    	}
						}
						if(set[p] < 0) {
							set[p] = 0 - set[p];
							flag = 1;
						}
						//插值求和 
						temp += l*(double)fictitious_y[set[p]];
						if(flag==1) {
							set[p] = 0 - set[p];
							flag = 0;
						}
					}
					//保存插值结果 
					y[i*stride_target+j*3+k] = (uint8)temp;
				}
			}
		} 
	}
	else {
		//返回错误信息 
		perror("Wrong type of image.");
	}
} 

BMP_HEADER get_Image(char image_Name[],uint8 data[]) {
	int fd = open(image_Name, O_RDONLY | O_BINARY);
	BMP_HEADER header;
	if(fd == -1) {
		; 
	}
	else {
		//读取图像文件头和信息头 
		read(fd, &header, sizeof(BMP_HEADER));
		printf("********************************源图像********************************\n"); 
		//输出文件头、信息头数据 
		print_BMPHEADER(header);
		//跳过调色板部分 
		lseek(fd, header.bfOffBits, SEEK_SET);
		//读取图像数据部分 
        read(fd, data, header.biSizeImage);
  	    close(fd);
  	    //返回图像文件头和信息头数据 
  	    return header;
	}
}

void write_Image(char image_Name[],uint8 y[],BMP_HEADER header,int target_Width,int target_Height) {
	char fName[256],temp[16];
	//确定要写的文件名 
	strcpy(fName,"");
    strncat(fName,image_Name,strlen(image_Name)-4);
    itoa(target_Width,temp,10);
    strcat(temp,"x");
    strcat(fName,temp);
    itoa(target_Height,temp,10);
    strcat(fName,temp);
    strcat(fName,".bmp");
	int fd = open(fName, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY);
    if(fd < 0 ) {
    	;
	}
	//写文件头和信息头 
	uint16 bpp = header.biBitCount;
	uint32 compression = header.biCompression;
    memset(&header, 0, sizeof(BMP_HEADER));
    header.bfType = 'M'*256 + 'B';
    header.bfOffBits = sizeof(BMP_HEADER) + ((bpp==8)?1024:0);
    header.biSize = 40;
    header.biWidth = target_Width;
    header.biHeight = target_Height;
    header.biPlanes = 1;
    header.biBitCount = bpp;
    header.biCompression = compression;
    header.biSizeImage = (bpp==8)?((target_Width+3)/4*4*target_Height):((target_Width*3+3)/4*4*target_Height);
    header.bfSize = header.bfOffBits + header.biSizeImage;
    header.biClrUsed = (bpp==8)?256:0;
    write(fd, &header, sizeof(BMP_HEADER));
    //写文件调色板数据 
    if(bpp == 8) {
    	uint8 clrPal[256*4];
    	int i = 0;
    	for(i=0; i<256; i++) {
    		clrPal[4*i] = clrPal[4*i+1] = clrPal[4*i+2] = i;
            clrPal[4*i+3] = 0;
        }
        write(fd, clrPal, 256*4);
	}
	//写图像数据部分 
	write(fd, y, header.biSizeImage);
    close(fd);
    printf("********************************目标图像********************************\n"); 
    //输出写的文件头和信息头数据 
    print_BMPHEADER(header);
    //结束 
    return; 
}

void print_BMPHEADER(BMP_HEADER header) {
	//输出BMP_HEADER信息 
	printf(" bfType          : %c%c\n", header.bfType%256,header.bfType/256 );
    printf(" bfSize          : %d  \n", header.bfSize          );
    printf(" bfReserved1     : %d  \n", header.bfReserved1     );
    printf(" bfReserved2     : %d  \n", header.bfReserved2     );
    printf(" bfOffBits       : %d\n\n", header.bfOffBits       );
    printf(" biSize          : %d  \n", header.biSize          );
    printf(" biWidth         : %d  \n", header.biWidth         );
    printf(" biHeight        : %d  \n", header.biHeight        );
    printf(" biPlanes        : %d  \n", header.biPlanes        );
    printf(" biBitCount      : %d  \n", header.biBitCount      );
    printf(" biCompression   : %d  \n", header.biCompression   );
    printf(" biSizeImage     : %d  \n", header.biSizeImage     );
    printf(" biXPelsPerMeter : %d  \n", header.biXPelsPerMeter );
    printf(" biYPelsPerMeter : %d  \n", header.biYPelsPerMeter );
    printf(" biClrUsed       : %d  \n", header.biClrUsed       );
    printf(" biClrImportant  : %d  \n", header.biClrImportant  );
    printf("\n");
    //输出完毕 
    return;
}

3.3 运行结果

  原灰度图尺寸为256*256,在程序运行时分别输入目标尺寸为511*411,512*512,调整后的图片如图5、图6所示。

在这里插入图片描述

图5 511*411

  

在这里插入图片描述

图6 512*512

  原彩色图尺寸为256*256,在程序运行时分别输入目标尺寸为125*119,256*512,调整后的图片如图7、图8所示。

在这里插入图片描述

图7 125*119   

在这里插入图片描述

图8 256*512
  • 2
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

奇齐

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值