问答 店铺
热搜: ZYNQ FPGA discuz

QQ登录

只需一步,快速开始

微信登录

微信扫码,快速开始

微信扫一扫 分享朋友圈

已有 47 人浏览分享

开启左侧

FPGA图像处理-图像高斯滤波处理

[复制链接]
47 0
安路-FPGA课程
安路课程: 图像算法 » 图像新手入门实验
安路系列: EG4
本帖最后由 UT发布 于 2025-4-2 17:08 编辑

软件版本:Anlogic -TD5.6.1-64bit
操作系统:WIN10 64bit
硬件平台:适用安路(Anlogic)FPGA
登录米联客”FPGA社区-www.uisrc.com视频课程、答疑解惑!
1概述

本文简述了图像高斯滤波的算法,讲解如何进行Verilog的算法实现,并进行上板实验。

2算法原理简介

高斯滤波是一种线性平滑滤波,适用于消除高斯噪声,广泛应用于图像处理的降噪过程。通俗的讲,高斯滤波就是对整幅图像进行加权平均的过程,每一个像素点的值,都由其本身和模板邻域内的其他像素值经过加权平均后得到。高斯滤波的具体操作是:用一个模板(3x35x5)扫描图像中的每一个像素,用模板确定的邻域内像素的加权平均灰度值去替代模板中心像素点的值。

高斯滤波的3x3的匹配模板如下:

image.jpg
3算法仿真
3.1Matlab算法仿真
3.1.1Matlab算法代码分析

源代码如下:

  1. clear;clear all;clc;
  2. image_in = imread('lena_1280x720.jpg');
  3. % [row,col,n] = size(image_in);
  4. image_gray  = rgb2gray(image_in);
  5. [row,col]         = size(image_gray);
  6. image_gray          = im2double(image_gray);
  7. gaussion_image         = zeros(size(image_gray), 'like', image_gray);
  8. for i = 2:1:row-1
  9.         for j = 2:1:col-1
  10.                 gaussion_image(i,j) = (...
  11.                 image_gray(i-1,j-1)+image_gray(i-1,j)*2+image_gray(i-1,j+1)+...
  12.                 image_gray(i,j-1)*2+image_gray(i,j  )*4+image_gray(i,j+1)*2+...
  13.                 image_gray(i+1,j-1)+image_gray(i+1,j)*2+image_gray(i+1,j+1))/16;
  14.         end
  15. end
  16. image_gray1         = imnoise(image_gray,'salt & pepper',0.05);
  17. image_gray1          = im2double(image_gray1);
  18. gaussion_image1 = zeros(row,col);
  19. for i = 2:1:row-1
  20.         for j = 2:1:col-1
  21.                 gaussion_image1(i,j) = (...
  22.                 image_gray1(i-1,j-1)+image_gray1(i-1,j)*2+image_gray1(i-1,j+1)+...
  23.                 image_gray1(i,j-1)  +image_gray1(i,j)  *4+image_gray1(i,j+1)  +...
  24.                 image_gray1(i+1,j-1)+image_gray1(i+1,j)*2+image_gray1(i+1,j+1))/9;
  25.         end
  26. end
  27. image_gray2         = imnoise(image_gray,'gaussian',0.05);
  28. image_gray2          = im2double(image_gray2);
  29. gaussion_image2 = zeros(row,col);
  30. for i = 2:1:row-1
  31.         for j = 2:1:col-1
  32.                 gaussion_image2(i,j) = (...
  33.                 image_gray2(i-1,j-1)+image_gray2(i-1,j)*2+image_gray2(i-1,j+1)+...
  34.                 image_gray2(i,j-1)*2+image_gray2(i,j)  *4+image_gray2(i,j+1)*2 +...
  35.                 image_gray2(i+1,j-1)+image_gray2(i+1,j)*2+image_gray2(i+1,j+1))/9;
  36.         end
  37. end
  38. figure
  39. subplot(321);
  40. imshow(image_gray  ), title('the original gray image');
  41. subplot(322);
  42. imshow(gaussion_image), title('the gaussion image');
  43. subplot(323);
  44. imshow(image_gray1), title('the salt & pepper image');
  45. subplot(324);
  46. imshow(gaussion_image1), title('the gaussion1 image');
  47. subplot(325);
  48. imshow(image_gray2), title('the gaussian image');
  49. subplot(326);
  50. imshow(gaussion_image2), title('the gaussion2 image');
复制代码
3.1.2Matlab实验结果
image.jpg
3.2Verilog算法仿真
3.2.1Modelsim仿真
3.2.1.1仿真执行

在件夹Algorithm_simulation下进行算法的仿真,分为sim,src和tb三个子文件夹。在sim文件夹下有win系统的快捷执行文件sim.bat,可以一键进行仿真,src文件下放的是Verilog的核心图像算法及其顶层与输入图像激励,tb文件下放的是测试激励文件及输出图像的保存。

双击执行sim文件夹下sim.bat,自动打开Modelsim仿真,自动添加仿真波形,执行完成后自动保存图像,仿真波形如图所示:

image.jpg

3.2.1.2仿真关键部分代码解析

Sim.do执行仿真代码,文件内容如下:

  1. #
  2. # Create work library
  3. #
  4. vlib work
  5. #
  6. # Compile sources
  7. #
  8. vlog "../src/*.v"
  9. vlog "../tb/*.v"
  10. #
  11. # Call vsim to invoke simulator
  12. #
  13. vsim -voptargs=+acc work.top_tb
  14. #
  15. # Add waves
  16. #
  17. do wave.do
  18. #
  19. # Run simulation
  20. #
  21. run -all
  22. #
  23. # End
  24.    
复制代码

图像输入代码部分:

  1. reg                 en;
  2. reg [12:0]         h_syn_cnt = 'd0;
  3. reg [12:0]         v_syn_cnt = 'd0;
  4. reg [23:0]         image [0 : H_ACTIVE*V_ACTIVE-1];
  5. reg [31:0]         image_cnt = 'd0;
  6. //读取txt文件到image数组中
  7. initial begin
  8.         $readmemh("../matlab_src/image_720_1280_3.txt", image);
  9. end
  10. // 行扫描计数器
  11. always@(posedge i_clk)
  12. begin
  13.         if(h_syn_cnt == H_TOTAL_TIME-1)
  14.         h_syn_cnt <= 0;
  15.     else
  16.         h_syn_cnt <= h_syn_cnt + 1;
  17. end
  18. // 列扫描计数器
  19. always@(posedge i_clk)
  20. begin
  21.         if(h_syn_cnt == H_TOTAL_TIME-1)
  22.         begin
  23.         if(v_syn_cnt == V_TOTAL_TIME-1)
  24.             v_syn_cnt <= 0;
  25.         else
  26.             v_syn_cnt <= v_syn_cnt + 1;
  27.         end
  28. end
  29. // 行同步控制
  30. always@(posedge i_clk)
  31. begin
  32.     if(h_syn_cnt < H_SYNC_TIME)
  33.         o_hsyn <= 0;
  34.     else
  35.         o_hsyn <= 1;
  36. end
  37. // 场同步控制
  38. always@(posedge i_clk)
  39. begin
  40.     if(v_syn_cnt < V_SYNC_TIME)
  41.         o_vsyn <= 0;
  42.     else
  43.         o_vsyn <= 1;
  44. end
  45. // 坐标使能.
  46. always@(posedge i_clk)
  47. begin
  48.     if(v_syn_cnt >= V_SYNC_TIME + V_BACK_PORCH && v_syn_cnt < V_SYNC_TIME + V_BACK_PORCH + V_ACTIVE)
  49.     begin
  50.         if(h_syn_cnt >= H_SYNC_TIME + H_BACK_PORCH && h_syn_cnt < H_SYNC_TIME + H_BACK_PORCH + H_ACTIVE)
  51.             en <= 1;
  52.         else
  53.             en <= 0;
  54.     end
  55.     else
  56.         en <= 0;
  57. end
  58. always@(posedge i_clk)
  59. begin
  60.     if(en)
  61.         begin
  62.                 o_r                 <= image[image_cnt][23:16];
  63.                 o_g                 <= image[image_cnt][15:8];
  64.                 o_b                 <= image[image_cnt][7:0];
  65.             image_cnt         <= image_cnt + 1;
  66.         end
  67.         else if(image_cnt == H_ACTIVE*V_ACTIVE)
  68.         begin
  69.                 o_r                 <= 8'h00;
  70.                 o_g                 <= 8'h00;
  71.                 o_b                 <= 8'h00;
  72.             image_cnt         <= 'd0;
  73.         end        
  74.     else
  75.         begin
  76.                 o_r                 <= 8'h00;
  77.                 o_g                 <= 8'h00;
  78.                 o_b                 <= 8'h00;
  79.             image_cnt         <= image_cnt;
  80.         end        
  81. end
  82. always@(posedge i_clk)
  83. begin
  84.         // if(image_cnt >= H_ACTIVE*V_ACTIVE)
  85.                 // o_en <= 0;
  86.         // else
  87.                 o_en <= en;
  88. end
复制代码

图像输出保存代码部分:

  1. reg             clk;
  2. reg             rst_n;
  3. integer                 image_txt;
  4. reg [31:0]                 pixel_cnt;
  5. wire[23:0]          data;
  6. wire            de;
  7. top u_top
  8. (
  9.     .i_clk                              (clk                ),
  10.     .i_rst_n                      (rst_n              ),
  11.     .o_gray_data             (data               ),
  12.     .o_gray_de               (de                 )
  13. );
  14. always #(1) clk = ~clk;
  15. initial
  16. begin
  17.         clk   = 1;
  18.     rst_n = 0;         
  19.         #100
  20.     rst_n = 1;
  21.         
  22. end
  23. glbl glbl();
  24. initial
  25. begin
  26.     image_txt = $fopen("../matlab_src/image_720_1280_3_out.txt");
  27. end
  28. always@(posedge clk or negedge rst_n)
  29. begin
  30.     if(!rst_n)
  31.         begin
  32.         pixel_cnt <= 0;
  33.     end
  34.     else if(de)
  35.         begin
  36.         pixel_cnt = pixel_cnt + 1;
  37.         $fwrite(image_txt,"%h\n",data);
  38.     end
  39. end
  40. always@(posedge clk )
  41. begin
  42.         if(pixel_cnt == 720*1280)
  43.         begin
  44.                 $display("*******************************************************************************");               
  45.                 $display("*** Success:image_720_1280_3_out.txt is output complete! %t", $realtime, "ps***");
  46.                 $display("*******************************************************************************");
  47.                         $fclose(image_txt);
  48.                 $stop;
  49.         end        
  50. end
复制代码
3.2.2Modelsim实验结果

matlab查看输入输出的图像代码部分:

  1. clear;clear all;clc;
  2. row = 720;  
  3. col = 1280;  
  4. n   = 3;   
  5. image_sim_pass = uint8(zeros(row,col,n));
  6. fid = fopen('image_720_1280_3_out.txt','r');
  7. for x = 1:row
  8.     for y = 1:col
  9.         RGB = fscanf(fid,'%s',1);
  10.         image_sim_pass(x,y,1) = uint8(hex2dec(RGB(1:2)));
  11.         image_sim_pass(x,y,2) = uint8(hex2dec(RGB(3:4)));
  12.         image_sim_pass(x,y,3) = uint8(hex2dec(RGB(5:6)));              
  13.     end
  14. end
  15. fclose(fid);
  16. image_1 = imread('lena_1280x720.jpg');
  17. subplot(121);
  18. imshow(image_1), title('The original image');
  19. subplot(122);
  20. imshow(image_sim_pass),title('After processing images');
  21. imwrite(image_sim_pass,'lena_720x128_sim_pass.jpg');
复制代码
image.jpg
4工程实现
4.1Verilog代码分析
变量声明
  1. reg        [3:0]                i_hsyn_d;
  2. reg        [3:0]                i_vsyn_d;
  3. reg        [3:0]                i_en_d;
  4. reg [11:0]                sum_r;
  5. reg [11:0]                sum_g;
  6. reg [11:0]                sum_b;
  7. reg [11:0]                sum_r1;
  8. reg [11:0]                sum_g1;
  9. reg [11:0]                sum_b1;
  10. reg [11:0]                sum_r2;
  11. reg [11:0]                sum_g2;
  12. reg [11:0]                sum_b2;
  13. reg [11:0]                sum_r3;
  14. reg [11:0]                sum_g3;
  15. reg [11:0]                sum_b3;
  16. reg [7:0]                gau_r;
  17. reg [7:0]                gau_g;
  18. reg [7:0]                gau_b;
  19. wire [7:0]        r_temp_11;
  20. wire [7:0]        r_temp_12;
  21. wire [7:0]        r_temp_13;
  22. wire [7:0]        r_temp_21;
  23. wire [7:0]        r_temp_22;
  24. wire [7:0]        r_temp_23;
  25. wire [7:0]        r_temp_31;
  26. wire [7:0]        r_temp_32;
  27. wire [7:0]        r_temp_33;
  28. wire [7:0]        g_temp_11;
  29. wire [7:0]        g_temp_12;
  30. wire [7:0]        g_temp_13;
  31. wire [7:0]        g_temp_21;
  32. wire [7:0]        g_temp_22;
  33. wire [7:0]        g_temp_23;
  34. wire [7:0]        g_temp_31;
  35. wire [7:0]        g_temp_32;
  36. wire [7:0]        g_temp_33;
  37. wire [7:0]        b_temp_11;
  38. wire [7:0]        b_temp_12;
  39. wire [7:0]        b_temp_13;
  40. wire [7:0]        b_temp_21;
  41. wire [7:0]        b_temp_22;
  42. wire [7:0]        b_temp_23;
  43. wire [7:0]        b_temp_31;
  44. wire [7:0]        b_temp_32;
  45. wire [7:0]        b_temp_33;
复制代码
输出赋值
  1. assign o_hs = i_hsyn_d[3];
  2. assign o_vs = i_vsyn_d[3];
  3. assign o_en = i_en_d[3]        ;
  4. assign o_r        = gau_r;
  5. assign o_g        = gau_g;
  6. assign o_b        = gau_b;
复制代码
信号同步化
  1. always@(posedge i_clk )
  2. begin
  3.         i_hsyn_d <=        {i_hsyn_d[2:0],i_hsyn};
  4.         i_vsyn_d <=        {i_vsyn_d[2:0],i_vsyn};
  5.         i_en_d         <=        {i_en_d[2:0],i_en};
  6. end
复制代码
调用3x3模板
  1. image_template u_r_template
  2. (
  3.         .i_clk                        (i_clk                                ),
  4.         .i_rst_n                (i_rst_n                        ),
  5.         .i_en                        (i_en                                ),
  6.         .i_data                        (i_r                                ),
  7.         .o_en                        (                                        ),
  8.         .o_temp_11                (r_temp_11                        ),
  9.         .o_temp_12                (r_temp_12                        ),
  10.         .o_temp_13                (r_temp_13                        ),        
  11.         .o_temp_21                (r_temp_21                        ),
  12.         .o_temp_22                (r_temp_22                        ),
  13.         .o_temp_23                (r_temp_23                        ),               
  14.         .o_temp_31                (r_temp_31                        ),
  15.         .o_temp_32                (r_temp_32                        ),
  16.         .o_temp_33                (r_temp_33                        )
  17. );
复制代码
调用3x3模板
  1. image_template u_g_template
  2. (
  3.         .i_clk                        (i_clk                                ),
  4.         .i_rst_n                (i_rst_n                        ),
  5.         .i_en                        (i_en                                ),
  6.         .i_data                        (i_g                                ),
  7.         .o_en                        (                                        ),
  8.         .o_temp_11                (g_temp_11                        ),
  9.         .o_temp_12                (g_temp_12                        ),
  10.         .o_temp_13                (g_temp_13                        ),        
  11.         .o_temp_21                (g_temp_21                        ),
  12.         .o_temp_22                (g_temp_22                        ),
  13.         .o_temp_23                (g_temp_23                        ),               
  14.         .o_temp_31                (g_temp_31                        ),
  15.         .o_temp_32                (g_temp_32                        ),
  16.         .o_temp_33                (g_temp_33                        )
  17. );
复制代码
调用3x3模板
  1. image_template u_b_template
  2. (
  3.         .i_clk                        (i_clk                                ),
  4.         .i_rst_n                (i_rst_n                        ),
  5.         .i_en                        (i_en                                ),
  6.         .i_data                        (i_b                                ),
  7.         .o_en                        (                                        ),
  8.         .o_temp_11                (b_temp_11                        ),
  9.         .o_temp_12                (b_temp_12                        ),
  10.         .o_temp_13                (b_temp_13                        ),        
  11.         .o_temp_21                (b_temp_21                        ),
  12.         .o_temp_22                (b_temp_22                        ),
  13.         .o_temp_23                (b_temp_23                        ),               
  14.         .o_temp_31                (b_temp_31                        ),
  15.         .o_temp_32                (b_temp_32                        ),
  16.         .o_temp_33                (b_temp_33                        )
  17. );
复制代码
执行乘法运算
  1. always@(posedge i_clk or negedge i_rst_n)
  2. begin
  3.     if(!i_rst_n)
  4.         begin
  5.         sum_r1 <= 12'd0;
  6.         sum_g1 <= 12'd0;
  7.         sum_b1 <= 12'd0;
  8.                 sum_r2 <= 12'd0;
  9.         sum_g2 <= 12'd0;
  10.         sum_b2 <= 12'd0;
  11.                 sum_r3 <= 12'd0;
  12.         sum_g3 <= 12'd0;
  13.         sum_b3 <= 12'd0;
  14.     end
  15.     else
  16.         begin
  17.         sum_r1 <= r_temp_11   + r_temp_12*2 + r_temp_13  ;
  18.                 sum_r2 <= r_temp_21*2 + r_temp_22*4 + r_temp_23*2;
  19.                 sum_r3 <= r_temp_31   + r_temp_32*2 + r_temp_33  ;
  20.                
  21.         sum_g1 <= g_temp_11   + g_temp_12   + g_temp_13  ;
  22.                 sum_g2 <= g_temp_21*2 + g_temp_22*4 + g_temp_23*2;
  23.                 sum_g3 <= g_temp_31   + g_temp_32*2 + g_temp_33  ;        
  24.                
  25.         sum_b1 <= b_temp_11   + b_temp_12*2 + b_temp_13  ;
  26.                 sum_b2 <= b_temp_21*2 + b_temp_22*4 + b_temp_23*2;
  27.                 sum_b3 <= b_temp_31   + b_temp_32*2 + b_temp_33  ;
  28.     end
  29. end
复制代码
执行加法运算
  1. always@(posedge i_clk or negedge i_rst_n)
  2. begin
  3.     if(!i_rst_n)
  4.         begin
  5.         sum_r <= 12'd0;
  6.         sum_g <= 12'd0;
  7.         sum_b <= 12'd0;
  8.     end
  9.     else
  10.         begin
  11.         sum_r <= sum_r1 + sum_r2 + sum_r3;
  12.                 sum_g <= sum_g1 + sum_g2 + sum_g3;
  13.                 sum_b <= sum_b1 + sum_b2 + sum_b3;
  14.     end
  15. end
复制代码
运算结果进行移位
  1. always@(posedge i_clk or negedge i_rst_n)
  2. begin
  3.     if(!i_rst_n)
  4.         begin
  5.         gau_r <= 8'd0;
  6.         gau_g <= 8'd0;
  7.         gau_b <= 8'd0;
  8.     end
  9.     else
  10.         begin
  11.         // gau_r <= sum_r >> 4;
  12.                 // gau_g <= sum_g >> 4;
  13.                 // gau_b <= sum_b >> 4;
  14.         gau_r <= sum_r[11:4];
  15.                 gau_g <= sum_g[11:4];
  16.                 gau_b <= sum_b[11:4];               
  17.     end
  18. end
复制代码
4.2工程结构

工程结构如图所示:

image.jpg

图像数据通过摄像头采集进来,先缓存在fifo中,然后通过写状态机,将图像数据送进DDR进行缓存,缓存后的图像数据从DDR中取出,通过读状态机送出到fifo中,然后算法处理模块在fifo中取出数据,完成数据处理后送到LCD进行显示输出。

5上板实验

实验前准备好MGC01Z开发板,gc0308摄像头,JTAG下载器,12V直流电源,BASE子卡,FPC连接线,七寸液晶屏。

插好摄像头,连接好板子与液晶屏之间的连接,如图所示:

image.jpg

然后给开发板上电,连接JTAG下载器到电脑,然后打开下载界面,如图所示:

image.jpg

点击下载后,可以看到正常的输出如下所示,摄像头的分辨率为640x480

image.jpg
























您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

0

关注

0

粉丝

271

主题
精彩推荐
热门资讯
网友晒图
图文推荐

  • 微信公众平台

  • 扫描访问手机版