6.RGB转YCbcr

1.方法

RGB转灰度有很多种方式
  1.将RGB中任意分量拿出来当做灰度值。
  2.取RGB三通道的均值来当灰度值。
  3.将RGB转YUV(YCbCr)然后取Y分量作为灰度值。
  其余的几种实现方式较为简单,这里不做介绍。重点实现RGB转YCbCr。

1.1 YUV(YCbCr)格式

  Y表示亮度,U和V表示色度,用于描述影像的饱和度和色调。RGB转YUV的转换一般是色彩空间的转换。YUV主要用在模拟系统中,而YCbCr是通过YUV信号的发展,并通过校正
的主要应用在数字视频中的一种编码方法。YUV适用于PAL和SECAM彩色电视制式,而YCrCb适用于计算机用的显示器。 一般意义上 YCbCr 即为 YUV 信号,没有严格的划分。 CbCr 分别为蓝色色度分量、红色色度分量。
RGB注重人色彩的感知,YUV则注重亮度的敏感程度。
使用YUV描述图像的好处在于:
  (1)亮度(Y)与色度(U、V)是独立的;
  (2)人眼能够识别数千种不同的色彩,但只能识别20多种灰阶值,采用YUV标准可以降低数字彩色图像所需的储存容量。

1.1.1 YUV4:4:4

  YUV三个通道采样率相同,因此每个分量相互独立。通常一个分量占8bit,一个像素占3byte。

1.1.2 YUV4:2:2

  YUV三个通道采样率不同,UV分量只有Y的一半,两个UV共占用一个Y。

1.2 RGB转YCbCr公式

在这里插入图片描述
  但是由于Verilog HDL无法进行浮点运算,因此使用扩大256倍,再向右移8Bit的方式来转换公式,(0.083 = 00010101)
在这里插入图片描述

2.算法验证平台搭建

2.1 图片转txt文本

  首先将图片转化为txt文本格式方便其他模块读取。

clear ;
clc ;
close;
RGB = imread('../img/1920x1080.bmp');
imshow(RGB);
[row,col,chn] = size(RGB);
fid = fopen('../data//pre.txt','w+');
for i = 1:rowfor j = 1:colfor k = 1:chnfprintf(fid,'%02x',RGB(i,j,k));endfprintf(fid,'\n');end
endfclose(fid); 

2.2 txt文本数据仿真回传

2.2.1 文本读取

  这里首先读取MATLAB生成的pre.txt文本,读取txt文本的模块为img_gen3,表示读取的RGB888的数据。

`timescale 1ns / 1psmodule img_gen3
#(parameter 	ACTIVE_IW 	= 	1920 	,parameter 	ACTIVE_IH 	= 	1080 	,parameter 	TOTAL_IW 	= 	2200 	,parameter 	TOTAL_IH 	= 	1100 	,parameter 	H_START 	= 	100 	,parameter 	V_START 	= 	4 		 		
)(input 	wire 				clk 	,input 	wire 				rst_n 	,output 	reg 				vs 		,output 	reg  	 	 		de 		,output 	reg 	[23:0] 		data 	
);reg 	[23:0] 	raw_array 	[ACTIVE_IW*ACTIVE_IH-1:0];integer 	i;initial 	beginfor(i=0;i<ACTIVE_IW*ACTIVE_IH;i=i+1)raw_array[i] = 0;
endinitial begin$readmemh("H:/picture/Z7/lesson6/data/pre.txt",raw_array);
endreg 	[15:0] 	hcnt 	;
reg 	[15:0] 	vcnt 	;reg 			h_de 	;
reg 			v_de  	;reg  			index_de 	;
reg 	[31:0] 	index 	 	;always @(posedge clk or negedge rst_n)if(!rst_n)hcnt <= 'd0;else if(hcnt == TOTAL_IW - 1)hcnt <= 'd0;else hcnt <= hcnt + 1'b1;always @(posedge clk or negedge rst_n)if(!rst_n)vcnt <= 'd0;else if(hcnt == TOTAL_IW - 1 && vcnt == TOTAL_IH - 1)vcnt <= 'd0;else if(hcnt == TOTAL_IW - 1)vcnt <= vcnt + 1'b1;else vcnt <= vcnt;always @(posedge clk or negedge rst_n)if(!rst_n)vs <= 'd0;else if(vcnt>=2)vs <= 1'b1;else vs <= 1'b0;always @(posedge clk or negedge rst_n)if(!rst_n)h_de <= 'd0;else if(hcnt >= H_START && hcnt < H_START + ACTIVE_IW)h_de <= 1'b1;else h_de <= 1'b0;always @(posedge clk or negedge rst_n)if(!rst_n)v_de <= 'd0;else if(vcnt >= V_START && vcnt < V_START + ACTIVE_IH)v_de <= 1'b1;else v_de <= 1'b0;always @(posedge clk or negedge rst_n)if(!rst_n)index_de <= 'd0;else if(index == ACTIVE_IW * ACTIVE_IH-1)index_de <= 1'b0;else if(h_de == 1'b1 && v_de == 1'b1)index_de <= 1'b1;else index_de <= 1'b0;always @(posedge clk or negedge rst_n)if(!rst_n)index_de <= 'd0;else if(h_de == 1'b1 && v_de == 1'b1)index_de <= 1'b1;else index_de <= 1'b0;always @(posedge clk or negedge rst_n)if(!rst_n)index <= 'd0;else if(index == ACTIVE_IW * ACTIVE_IH-1)index <= 1'b0;else if(index_de == 1'b1)index <= index + 1;else index <= index;always @(posedge clk or negedge rst_n)if(!rst_n)de <= 'd0;else de <= index_de;always @(posedge clk or negedge rst_n)if(index_de == 1'b1)data <= raw_array[index];else data <= 0;
endmodule

2.2.1 读取写入

  读取的数据在顶层写入为post.txt。

`timescale 1ns / 1ps
module tb_top();reg 	clk 	;
reg 	rst_n 	;integer 	outfile;initial 	beginclk = 0;rst_n = 0;#20rst_n = 1;outfile = $fopen("H:/picture/Z7/lesson6/data/post.txt","w");
end
always #5 clk = ~clk;wire 	vs ;
wire 	de ;
wire 	[23:0] 	data;img_gen3  #(.ACTIVE_IW 	(1920 	),.ACTIVE_IH 	(1080 	),.TOTAL_IW 	(2200 	),.TOTAL_IH 	(1100 	),.H_START 	(100 	),.V_START 	(4 		) 		
)u_img_gen3(.clk 	 	(clk 	 	),.rst_n 	 	(rst_n 	 	),.vs 		(vs 		),.de 		(de 		),.data 	 	(data 	 	)
);reg 	vs_r 	;always @(posedge clk)if(rst_n == 0)vs_r 	<= 1'b0;else vs_r 	<= vs;always @(posedge clk)if(~vs&&vs_r)$stop;else if(de == 1)$fdisplay(outfile,"%h\t%h\t%h",data[23:16],data[15:8],data[7:0]);
endmodule

2.2.3 MATLAB数据读取

  这里对比pre.txt和post.txt是否相等的方式有很多中,可以直接用文本对比工具,也可以用MATLAB做对比。这里只做一个txt转bmp。

clear ;
clc ;
close;
RGB = imread('../img/1920x1080.bmp');
imshow(RGB);
[row,col,chn] = size(RGB);
fid = fopen('../data//pre.txt','w+');
for i = 1:rowfor j = 1:colfor k = 1:chnfprintf(fid,'%02x',RGB(i,j,k));endfprintf(fid,'\n');end
end
fclose(fid); 

搭建后对比pre.txt与post.txt的数据一致。可以开始验证算法了。

3 rgb2ycbcr算法实现与仿真

3.1 rgb2ycbcr算法实现

  本算法实现包括三个时钟周期,第一个时钟周期算乘法,第二个时钟周期算加减,第三个时钟周期算触发(截位)。

module	rgb2ycbcr(input	wire				clk				,	//系统时钟input	wire				rst_n			,	//复位信号input	wire				pre_hsync		,	//输入的场同步input	wire				pre_vsync		,	//输入行同步input	wire				pre_de			,	//数据有效信号input	wire	[ 7:0]		pre_r 			,	//输入像素数据input 	wire 	[ 7:0] 		pre_g 			,input 	wire 	[ 7:0] 		pre_b 			,output	reg 				post_hsync 		,	//输出行同步output	reg 				post_vsync 		,	//输出场同步output	reg 				post_de 		,	//输出数据有效信号output	reg 	[7:0]		post_y 			,	//输出y(亮度)分量output	reg 	[7:0]		post_cb 		,	//输出蓝色色度分量output	reg 	[7:0]		post_cr				//输出红色色度分量);reg 	[15:0] 	pre_r0 	;reg 	[15:0] 	pre_r1 	;reg 	[15:0] 	pre_r2 	;reg 	[15:0] 	pre_g0 	;reg 	[15:0] 	pre_g1 	;reg 	[15:0] 	pre_g2 	;reg 	[15:0] 	pre_b0 	;reg 	[15:0] 	pre_b1 	;reg 	[15:0] 	pre_b2 	;reg 	[15:0] 	post_y0 ;reg 	[15:0] 	post_cb0;	reg 	[15:0] 	post_cr0;reg 			pre_hsync_d0;reg 			pre_vsync_d0;reg 			pre_de_d0 	;reg 			pre_hsync_d1;reg 			pre_vsync_d1;reg 			pre_de_d1 	;/*********************************************************
RGB888 to YCbCr
Y = 0.299R +0.587G + 0.114B
Cb = 0.568(B-Y) + 128 = -0.172R-0.339G + 0.511B + 128
CR = 0.713(R-Y) + 128 = 0.511R-0.428G -0.083B + 128Y = (77 *R + 150*G + 29 *B)>>8
Cb = (-43*R - 85 *G + 128*B)>>8 + 128
Cr = (128*R - 107*G - 21 *B)>>8 + 128Y = (77 *R + 150*G + 29 *B )>>8
Cb = (-43*R - 85 *G + 128*B + 32768)>>8
Cr = (128*R - 107*G - 21 *B + 32768)>>8
*********************************************************/
//计算乘法项always @(posedge clk)beginif(rst_n == 0)beginpre_r0 	<= 	'd0;pre_r1 	<= 	'd0;pre_r2 	<= 	'd0;endelse beginpre_r0 	<= 	pre_r *77;pre_r1 	<= 	pre_r *43;pre_r2 	<= 	pre_r *128;		end
endalways @(posedge clk)beginif(rst_n == 0)beginpre_g0 	<= 	'd0;pre_g1 	<= 	'd0;pre_g2 	<= 	'd0;endelse beginpre_g0 	<= 	pre_g *150;pre_g1 	<= 	pre_g *85 ;pre_g2 	<= 	pre_g *107;		end
endalways @(posedge clk)beginif(rst_n == 0)beginpre_b0 	<= 	'd0;pre_b1 	<= 	'd0;pre_b2 	<= 	'd0;endelse beginpre_b0 	<= 	pre_b *29;pre_b1 	<= 	pre_b *128 ;pre_b2 	<= 	pre_b *21;		end
end//计算加减法
always @(posedge clk)beginif(rst_n == 0)beginpost_y0 	<= 	0;post_cb0 	<= 	0;post_cr0 	<= 	0;endelse beginpost_y0 	<= 	 		pre_r0 + pre_g0 + pre_b0;post_cb0 	<= 	32768 - pre_r1 - pre_g1 + pre_b1;post_cr0 	<= 	32768 + pre_r2 - pre_g2 - pre_b2;end
end//移位赋值
always @(posedge clk)beginif(rst_n == 0)beginpost_y 	 	<= 	0;post_cb 	<= 	0;post_cr 	<= 	0;endelse beginpost_y 		<= 	post_y0 /256;post_cb 	<= 	post_cb0/256;post_cr 	<= 	post_cr0/256;end
end//本次计算一共用了三个时钟周期  所以其余的信号需要打三拍出来
always @(posedge clk)beginif(rst_n == 0)beginpre_hsync_d0 	<= 	'd0;pre_vsync_d0 	<= 	'd0;pre_de_d0 	 	<= 	'd0;pre_hsync_d1 	<= 	'd0;pre_vsync_d1 	<= 	'd0;pre_de_d1 	 	<= 	'd0;post_hsync 		<= 	'd0;post_vsync 		<= 	'd0;post_de 	 	<= 	'd0;		endelse beginpre_hsync_d0 	<= 	pre_hsync 		;pre_vsync_d0 	<= 	pre_vsync 		;pre_de_d0 	 	<= 	pre_de 	 		;pre_hsync_d1 	<= 	pre_hsync_d0 	;pre_vsync_d1 	<= 	pre_vsync_d0 	;pre_de_d1 	 	<= 	pre_de_d0 	 	;post_hsync 		<= 	pre_hsync_d1 	;post_vsync 		<= 	pre_vsync_d1 	;post_de 	 	<= 	pre_de_d1 	 	;		end
endendmodule

3.2 算法仿真与验证

3.2.1 算法仿真模块

`timescale 1ns / 1psmodule tb_rgb2ycbcr();reg 	 		clk 			;
reg 	 		rst_n 			;reg 			pre_hsync		;
wire 			pre_vsync		;
wire 			pre_de			;
wire 	[7:0] 	pre_r 			;
wire 	[7:0] 	pre_g 			;
wire 	[7:0] 	pre_b 	 		;
wire 			post_hsync 	 	;
wire 			post_vsync 	 	;
wire 			post_de 		;
wire 	[7:0] 	post_y 		 	;
wire 	[7:0] 	post_cb 		;
wire 	[7:0] 	post_cr			;	integer 	outfile;always #10 clk = ~clk;
initial 	beginclk = 0;rst_n = 0;pre_hsync = 1;#200rst_n = 1;outfile = $fopen("H:/picture/Z7/lesson6/data/post.txt","w");
endimg_gen3#(.ACTIVE_IW 	(1920 	),.ACTIVE_IH 	(1080 	),.TOTAL_IW 	(2200 	),.TOTAL_IH 	(1100 	),.H_START 	(100 	),.V_START 	(4 		) 		
)u_img_gen3(.clk 	 	(clk 	 			),.rst_n 	 	(rst_n 	 			),.vs 		(pre_vsync 			),.de 		(pre_de 			),.data 	 	({pre_r,pre_g,pre_b})
);rgb2ycbcr u1_rgb2ycbcr(.clk			(clk			),	//系统时钟.rst_n			(rst_n			),	//复位信号.pre_hsync		(pre_hsync		),	//输入的场同步.pre_vsync		(pre_vsync		),	//输入行同步.pre_de			(pre_de			),	//数据有效信号.pre_r 			(pre_r 			),	//输入像素数据.pre_g 			(pre_g 			),.pre_b 			(pre_b 			),.post_hsync 	(post_hsync 	),	//输出行同步.post_vsync 	(post_vsync 	),	//输出场同步.post_de 		(post_de 		),	//输出数据有效信号.post_y 		(post_y 		),	//输出y(亮度)分量.post_cb 		(post_cb 		),	//输出蓝色色度分量.post_cr		(post_cr		)	//输出红色色度分量);reg 	vs_r 	;always @(posedge clk)if(rst_n == 0)vs_r 	<= 1'b0;else vs_r 	<= post_vsync;always @(posedge clk)if(~post_vsync&&vs_r)$stop;else if(post_de == 1)$fdisplay(outfile,"%h",post_y);
endmodule

3.2.2 算法的MATLAB验证

clc;
clear all;
RGB = imread('../img/1920x1080.bmp');
[row,col,chn] = size(RGB);
RGB = double(RGB);
for i = 1:rowfor j = 1:colfor k = 1:chnY(i,j)  = (77*RGB(i,j,1)    + 150*RGB(i,j,2)    + 29*RGB(i,j,3)            )/256;Cb(i,j) = (-43*RGB(i,j,1)   - 85*RGB(i,j,2)     + 128*RGB(i,j,3)   +32768  )/256;Cr(i,j) = (128*RGB(i,j,1)   - 107*RGB(i,j,2)    - 21*RGB(i,j,3)    +32768  )/256;endend
end
matlab_Y = uint8(floor(Y));a = textread('../data/post.txt','%s');
IMdec = hex2dec(a);col = 1920;
row = 1080;IM = reshape(IMdec,col,row);
fpga_Y = uint8(IM)';subplot(1,2,1)
imshow(matlab_Y),title('MATLAB算法图像');
subplot(1,2,2)
imshow(fpga_Y),title('FPGA算法图像');sub = matlab_Y - fpga_Y;min_sub = min(min(sub));
max_sub = max(max(sub));

  最终MATLAB读取MolelSim的仿真数据以及MATLAN本身实现的rgb2ycbcr算法模块做对比。两者数据完全一样。
在这里插入图片描述
在这里插入图片描述

3.2.3 TXT转bmp

clear;
clc;
close all;a = textread('../data/post.txt','%s');
IMdec = hex2dec(a);col = 1920;
row = 1080;IM = reshape(IMdec,col,row);
b = uint8(IM)';imwrite(b,'../img/post.bmp');
imshow('../img/post.bmp');

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/576445.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【检索增强】Retrieval-Augmented Generation for Large Language Models:A Survey

简述 本文将RAG搜索范式分成了三类&#xff1a;朴素RAG、高级RAG和模块化RAG 从模块化RAG来看&#xff0c;朴素RAG是只有读取和检索模块&#xff0c;高级RAG除了朴素RAG中的读取和检索模块外&#xff0c;还具有重写和重排模块。 从某种程度上来说&#xff0c;朴素RAG是高级RA…

Kubernetes(K8S)学习(三):K8S实战案例

K8S实战案例 一、部署wordpressmysql&#xff08;NodePort方式&#xff09;&#xff08;1&#xff09;创建命名空间&#xff1a;wordpress&#xff08;2&#xff09;创建wordpress-db.yaml文件&#xff08;mysql&#xff09;&#xff08;3&#xff09;创建pod&#xff1a;mysql…

2024/03/28(C++·day4)

一、思维导图 二、练习题 1、写出三种构造函数&#xff0c;算术运算符、关系运算符、逻辑运算符重载尝试实现自增、自减运算符的重载 #include <iostream>using namespace std;// 构造函数示例 class MyClass { private:int data; public:// 默认构造函数MyClass() {da…

企微侧边栏开发(内部应用内嵌H5)

一、背景 公司的业务需要用企业微信和客户进行沟通&#xff0c;而客户的个人信息基本都存储在内部CRM系统中&#xff0c;对于销售来说需要一边看企微&#xff0c;一边去内部CRM系统查询&#xff0c;比较麻烦&#xff0c;希望能在企微增加一个侧边栏展示客户的详细信息&#xf…

Autodesk Maya 2025---智能建模与动画创新,重塑创意工作流程

Autodesk Maya 2025是一款顶尖的三维动画软件&#xff0c;广泛应用于影视广告、角色动画、电影特技等领域。新版本在功能上进行了全面升级&#xff0c;新增了对Apple芯片的支持&#xff0c;建模、绑定和角色动画等方面的功能也更加出色。 在功能特色方面&#xff0c;Maya 2025…

263:vue+openlayers 高德地图坐标转换 WGS84-GCJ02

第263个 点击查看专栏目录 本示例演示如何在vue+openlayers中将 WGS84坐标转化为GCJ02坐标,从而使得高德地图能正确的显示物体的坐标点。 84坐标系可以理解为是真实坐标系,是一个地点的实际坐标值。02坐标系是加密后的坐标系,是为了国家安全考虑。对应的不是实际的坐标值,…

单片机之串口通信

目录 串口介绍 通信的基本概念 并行通信和串行通信 同步通信和异步通信 串行异步通信方式 串行同步通信方式 通信协议 单片机常见通信接口 串行通信三种模式 串口参数 传输速度 ​串口的连接 电平标准 串行口的组成 串口数据缓冲寄存器 串行口控制寄存器 串口…

产品数据管理系统​技术方案

产品数据管理系统&#xff08;Product Data Management&#xff0c;简称PDM&#xff09;的技术方案旨在为企业提供高效、系统化的产品数据管理方法。以下是关于产品数据管理系统技术方案的一些关键内容&#xff1a; 产品数据管理系统概述&#xff1a; PDM系统是一个综合性的平台…

C#开发者必备!快速掌握onnxruntime实现YOWOv2视频动作检测技术!

C#开发者必备&#xff01;快速掌握onnxruntime实现YOWOv2视频动作检测技术&#xff01; 目录 介绍 效果 模型信息 项目 代码 Form1.cs YOWOv2.cs 下载 介绍 YOWOv2: A Stronger yet Efficient Multi-level Detection Framework for Real-time Spatio-temporal Action…

2024.3.28学习笔记

今日学习韩顺平java0200_韩顺平Java_对象机制练习_哔哩哔哩_bilibili 今日学习p286-p294 继承 继承可以解决代码复用&#xff0c;让我们的编程更加靠近人类思维&#xff0c;当多个类存在相同的属性和方法时&#xff0c;可以从这些类中抽象出父类&#xff0c;在父类中定义这些…

SQL Server 实验二:数据库视图的创建和使用

目录 第一关 相关知识 什么是表 操作数据表 创建数据表 插入数据 修改表结构 删除数据表 编程要求 第一关实验代码&#xff1a; 第二关 相关知识 视图是什么 视图的优缺点 视图的优点 视图的缺点 操作视图 创建视图 通过视图向基本表中插入数据 通过视图修改基本表的…

骗子查询系统源码

源码简介 小权云黑管理系统 V1.0 功能如下&#xff1a; 1.添加骗子&#xff0c;查询骗子 2.可添加团队后台方便审核用 3.在线反馈留言系统 4.前台提交骗子&#xff0c;后台需要审核才能过 5.后台使用光年UI界面 6.新增导航列表&#xff0c;可给网站添加导航友链 7.可添加云黑类…