问答 店铺
热搜: ZYNQ FPGA discuz

QQ登录

只需一步,快速开始

微信登录

微信扫码,快速开始

微信扫一扫 分享朋友圈

已有 40 人浏览分享

开启左侧

FPGA图像处理-图像二值化处理

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

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

本文简述了图像二值化的算法,讲解如何进行Verilog的算法实现,并进行上板实验。

2算法原理简介

图像二值化是将图像原先的颜色转变成黑、白两种颜色,设置不同的转换阈值得到不同的二值图,求取二值化阈值的最佳算法是大津法。

Otsu(大津法)算法是由日本学者OTSU1979年提出的一种对图像进行二值化的高效算法。原理上来讲,该方法又称作最大类间方差法,因为按照大津法求得的阈值进行图像二值化分割后,前景与背景图像的类间方差最大,是二值化的最佳全局阈值的算法。

image.jpg
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. threshold = graythresh(image_gray);  
  6. image_ostu1=im2bw(image_gray,threshold);  
  7. threshold = threshold *255;
  8. subplot(311);  
  9. imshow(image_gray); title('the image gray image');
  10. subplot(312);  
  11. imshow(image_ostu1); title('the image ostu1 image');
  12. N=row*col;   
  13. L=256;   
  14. for i=1:L  
  15.     count(i)=length(find(image_gray==(i-1)));  
  16.     p(i)=count(i)/(row*col);  
  17.     pp(i)=count(i);         
  18. end  
  19. m_g=0;  
  20. for i=1:L   
  21.     m_g=m_g+p(i)*(i-1);
  22.     m(i)=m_g;         
  23. end
  24.    
  25. for i=1:L   
  26.     p_k(i)=sum(p(1:i));  
  27. end
  28. k=(m_g*p_k-m).^2./(p_k.*(1-p_k));   
  29. m_g1=0;
  30. for i=1:L   
  31.     m_g1=m_g1+pp(i)*(i-1);
  32.     m1(i)=m_g1;         
  33. end
  34.    
  35. for i=1:L   
  36.     pp_k(i)=sum(pp(1:i));  
  37. end   
  38. kk=((fix(m_g1/(row*col)))*(fix(pp_k/4096))-(fix(m1/4096))).^2./((fix(pp_k/4096)).*(225-(fix(pp_k/4096))));
  39. t=(m_g1/(row*col))*(pp_k/4096)-(m1/4096);
  40. t1=225-pp_k/4096;
  41. t2=(pp_k/4096).*(225-pp_k/4096);
  42. t3=(m1/4096);
  43. t4=(pp_k/4096);
  44.    
  45. kkk=((m_g1/(row*col))*(pp_k/(row*col))-(m1/(row*col))).^2./((pp_k/(row*col)).*(1-pp_k/(row*col)));   
  46. [y1,th1]=max(kk);  
  47. [y2,th2]=max(kkk);  
  48. [y,th]=max(k);  
  49.   
  50. for i=1:row   
  51.     for j=1:col   
  52.         if image_gray(i,j)>th   
  53.             image_ostu2(i,j)=255;   
  54.         else   
  55.             image_ostu2(i,j)=0;   
  56.         end   
  57.     end   
  58. end  
  59. subplot(313);  
  60. imshow(image_ostu2);  title('the image ostu2 image');
复制代码
3.1.2Matlab实验结果
image.jpg

3.2Verilog算法仿真
3.2.1Modelsim仿真
3.2.1.1仿真执行

在件夹Algorithm_simulation下进行算法的仿真,分为simsrctb三个子文件夹。在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
复制代码

图像输入代码部分:

  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   = 1;   
  5. image_sim_pass = uint8(zeros(row,col,n));
  6. fid = fopen('image_720_1280_1_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_1280x720_sim_pass.jpg');   
复制代码
image.jpg
4工程实现4.1Verilog代码分析
变量声明
  1. reg                        valid;        
  2. reg [7:0]         threshold;
复制代码
灰度公式
  1. // gray1 =  0.299 * image_in_r + 0.587 * image_in_g + 0.114 * image_in_b;
  2. // gray1 =  256*(0.299 * image_in_r + 0.587 * image_in_g + 0.114 * image_in_b)>>8;
  3. // gray1 =  (77 * image_in_r + 150 * image_in_g + 29 * image_in_b)>>8;
复制代码
变量声明
  1. reg [15:0] r_d0;
  2. reg [15:0] g_d0;
  3. reg [15:0] b_d0;
  4. reg [15:0] gray_d0;
  5. reg [1:0] hsyn;
  6. reg [1:0] vsyn;
  7. reg [1:0] de;
复制代码
执行乘法运算
  1. always@(posedge i_clk or negedge i_rst_n)
  2. begin
  3.     if(!i_rst_n)
  4. begin
  5.         r_d0 <= 16'd0;
  6.         g_d0 <= 16'd0;
  7.         b_d0 <= 16'd0;
  8.     end
  9.     else
  10. begin
  11.         r_d0 <= 77  * i_r;
  12.         g_d0 <= 150 * i_g;
  13.         b_d0 <= 29  * i_b;         
  14.     end
  15. end
复制代码
执行加法运算
  1. always@(posedge i_clk or negedge i_rst_n)
  2. begin
  3.     if(!i_rst_n)
  4. begin
  5.   gray_d0 <= 16'd0;
  6.     end
  7.     else
  8. begin
  9.   gray_d0 <= r_d0 + g_d0 + b_d0;   
  10.     end
  11. end
复制代码
进行信号同步化
  1. always@(posedge i_clk )
  2. begin
  3.         hsyn        <= {hsyn[0],i_hsyn};
  4.         vsyn        <= {vsyn[0],i_vsyn};
  5.         de                <= {de[0],i_de};
  6. end
复制代码
进行阈值锁存
  1. always@(posedge i_clk or negedge i_rst_n)
  2. begin
  3.         if(!i_rst_n)
  4.         begin
  5.                 valid                <= 'd0;        
  6.                 threshold   <= 'd0;
  7.         end
  8.         else if(i_valid)
  9.         begin
  10.                 valid                <= 'd1;               
  11.                 threshold   <= i_threshold;        
  12.         end
  13.         else
  14.         begin
  15.                 valid                <= valid;               
  16.                 threshold   <= threshold;        
  17.         end        
  18.         
  19. end
复制代码
进行二值化计算
  1. always@(posedge i_clk or negedge i_rst_n)
  2. begin
  3.         if(!i_rst_n)
  4.         begin
  5.                 o_binary_hsyn <= 'd0;        
  6.                 o_binary_vsyn <= 'd0;
  7.                 o_binary_data <= 'd0;
  8.                 o_binary_de   <= 'd0;
  9.         end
  10.         else if(valid)
  11.         begin
  12.                 o_binary_hsyn <= hsyn;        
  13.                 o_binary_vsyn <= vsyn;
  14.                 o_binary_data <= gray_d0[15:8] > threshold ? 255 : 0;
  15.                 o_binary_de   <= de  ;
  16.         end
  17. end
复制代码
4.2工程结构

工程结构如图所示:

image.jpg

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

5上板实验
image.jpg

点击下载后,可以看到正常的输出如下所示,摄像头的分辨率为640x480,二值化可以实时进行,如图所示:


image.jpg





























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

本版积分规则

0

关注

0

粉丝

272

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

  • 微信公众平台

  • 扫描访问手机版