C实现纵横比保持的RGB图像缩放

2024-03-07 07:48

本文主要是介绍C实现纵横比保持的RGB图像缩放,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

双线性插值,实现图像scale down, 记个笔记


#include "stdafx.h"
#include <iostream>
#include "stdio.h"using namespace std;int img_down_scale(const unsigned char* src_img, unsigned char* dst_img, unsigned int src_width, unsigned int src_height, unsigned int dst_width, unsigned int dst_height)
{//bilinear interpolationif (!src_img || !dst_img) {std::cout << "input array can not be null!" << std::endl;return -1;}if (!dst_width|| !dst_height) {std::cout << "image size wrong!" << std::endl;return -2;}double x_ratio = (double)src_width / dst_width;double y_ratio = (double)src_height / dst_height;double aspect_ratio = 0.0f;int border_shift = 0;int h = 0, w = 0;int x0 = 0, x1 = 0, y0 = 0, y1 = 0;int dst_r = 0, dst_g = 0, dst_b = 0;if (x_ratio < y_ratio) {aspect_ratio = x_ratio;border_shift = (int)((src_height - (int)(dst_height * aspect_ratio)) / 2);for (h = 0; h < dst_height; h++) {for (w = 0; w < dst_width; w++) {double src_h = border_shift + h * aspect_ratio;double src_w = w * aspect_ratio;x0 = (int)src_w;x1 = x0 + 1;y0 = (int)src_h;y1 = y0 + 1;int rx0y0 = src_img[3 * (y0*src_width + x0) + 0];int gx0y0 = src_img[3 * (y0*src_width + x0) + 1];int bx0y0 = src_img[3 * (y0*src_width + x0) + 2];int rx1y0 = src_img[3 * (y0*src_width + x1) + 0];int gx1y0 = src_img[3 * (y0*src_width + x1) + 1];int bx1y0 = src_img[3 * (y0*src_width + x1) + 2];int rx0y1 = src_img[3 * (y1*src_width + x0) + 0];int gx0y1 = src_img[3 * (y1*src_width + x0) + 1];int bx0y1 = src_img[3 * (y1*src_width + x0) + 2];int rx1y1 = src_img[3 * (y1*src_width + x1) + 0];int gx1y1 = src_img[3 * (y1*src_width + x1) + 1];int bx1y1 = src_img[3 * (y1*src_width + x1) + 2];dst_r = (y1 - src_h) * ((x1 - src_w)* rx0y0 + (src_w - x0)*rx1y0) + (src_h - y0) *((x1 - src_w)*rx0y1 + (src_w - x0)*rx1y1);dst_g = (y1 - src_h) * ((x1 - src_w)* gx0y0 + (src_w - x0)*gx1y0) + (src_h - y0) *((x1 - src_w)*gx0y1 + (src_w - x0)*gx1y1);dst_b = (y1 - src_h) * ((x1 - src_w)* bx0y0 + (src_w - x0)*bx1y0) + (src_h - y0) *((x1 - src_w)*bx0y1 + (src_w - x0)*bx1y1);dst_r = dst_r > 255 ? 255 : dst_r < 0 ? 0 : dst_r;dst_g = dst_g > 255 ? 255 : dst_g < 0 ? 0 : dst_g;dst_b = dst_b > 255 ? 255 : dst_b < 0 ? 0 : dst_b;dst_img[3 * (h * dst_width + w) + 0] = (unsigned char)dst_r;dst_img[3 * (h * dst_width + w) + 1] = (unsigned char)dst_g;dst_img[3 * (h * dst_width + w) + 2] = (unsigned char)dst_b;}}} else {aspect_ratio = y_ratio;border_shift = (int)((src_width - (int)(dst_width * aspect_ratio)) / 2);for (h = 0; h < dst_height; h++) {double src_h = h * aspect_ratio;for (w = 0; w < dst_width; w++) {double src_w = border_shift +  w * aspect_ratio;x0 = (int)src_w;x1 = x0 + 1;y0 = (int)src_h;y1 = y0 + 1;int rx0y0 = src_img[3 * (y0*src_width + x0) + 0];int gx0y0 = src_img[3 * (y0*src_width + x0) + 1];int bx0y0 = src_img[3 * (y0*src_width + x0) + 2];int rx1y0 = src_img[3 * (y0*src_width + x1) + 0];int gx1y0 = src_img[3 * (y0*src_width + x1) + 1];int bx1y0 = src_img[3 * (y0*src_width + x1) + 2];int rx0y1 = src_img[3 * (y1*src_width + x0) + 0];int gx0y1 = src_img[3 * (y1*src_width + x0) + 1];int bx0y1 = src_img[3 * (y1*src_width + x0) + 2];int rx1y1 = src_img[3 * (y1*src_width + x1) + 0];int gx1y1 = src_img[3 * (y1*src_width + x1) + 1];int bx1y1 = src_img[3 * (y1*src_width + x1) + 2];dst_r = (y1 - src_h) * ((x1 - src_w)* rx0y0 + (src_w - x0)*rx1y0) + (src_h - y0) *((x1 - src_w)*rx0y1 + (src_w - x0)*rx1y1);dst_g = (y1 - src_h) * ((x1 - src_w)* gx0y0 + (src_w - x0)*gx1y0) + (src_h - y0) *((x1 - src_w)*gx0y1 + (src_w - x0)*gx1y1);dst_b = (y1 - src_h) * ((x1 - src_w)* bx0y0 + (src_w - x0)*bx1y0) + (src_h - y0) *((x1 - src_w)*bx0y1 + (src_w - x0)*bx1y1);dst_r = dst_r > 255 ? 255 : dst_r < 0 ? 0 : dst_r;dst_g = dst_g > 255 ? 255 : dst_g < 0 ? 0 : dst_g;dst_b = dst_b > 255 ? 255 : dst_b < 0 ? 0 : dst_b;dst_img[3 * (h * dst_width + w) + 0] = (unsigned char)dst_r;dst_img[3 * (h * dst_width + w) + 1] = (unsigned char)dst_g;dst_img[3 * (h * dst_width + w) + 2] = (unsigned char)dst_b;}}}return 0;
}
int _tmain(int argc, _TCHAR* argv[])
{unsigned char *pSrcImg = (unsigned char*)malloc(1000 * 1000 * 3);unsigned char *pDstImg = (unsigned char*)malloc(480 * 320 * 3);FILE *fp = fopen("input_1000x1000.bmp", "rb");fseek(fp, 54, SEEK_SET);fread(pSrcImg, 1000 * 1000 * 3, 1, fp);fclose(fp);img_down_scale(pSrcImg, pDstImg, 1000,1000, 480,320);unsigned char bmpHeader[54] = { 0 };FILE *fp_bmp_header = fopen("semseg_480x320.bmp", "rb");fread(bmpHeader, 54, 1, fp_bmp_header);fclose(fp_bmp_header);FILE *fp_write = fopen("down_scale_480x320.bmp", "wb");if (fp_write){fwrite(bmpHeader, 54, 1, fp_write);fwrite(pDstImg, 480 * 320 * 3, 1, fp_write);fclose(fp_write);fp_write = NULL;}if (pSrcImg) { free(pSrcImg); pSrcImg = NULL; }if (pDstImg) { free(pDstImg); pDstImg = NULL; }return 0;
}

这篇关于C实现纵横比保持的RGB图像缩放的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/782827

相关文章

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义

opencv图像处理之指纹验证的实现

《opencv图像处理之指纹验证的实现》本文主要介绍了opencv图像处理之指纹验证的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录一、简介二、具体案例实现1. 图像显示函数2. 指纹验证函数3. 主函数4、运行结果三、总结一、

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

基于SpringBoot实现文件秒传功能

《基于SpringBoot实现文件秒传功能》在开发Web应用时,文件上传是一个常见需求,然而,当用户需要上传大文件或相同文件多次时,会造成带宽浪费和服务器存储冗余,此时可以使用文件秒传技术通过识别重复... 目录前言文件秒传原理代码实现1. 创建项目基础结构2. 创建上传存储代码3. 创建Result类4.