- 博客(3)
- 收藏
- 关注
原创 2021-06-24
基于MATLAB GUI的图像处理系统基于MATLAB GUI的图像处理系统借助 Matlab GUI实现数字图像处理演示系统,要求功能:1图像打开显示2图像直方图均衡3图像加噪 高斯噪声、椒盐噪声4图像中值、算数均值滤波、几何均值滤波5图像高通、低通滤波6图像边缘检测,sobel算子、prewtti算子、canny算子、7图像旋转,顺时针旋转45度、90度、180度.GUI界面原始图像程序及分析右击打开图片按键,选择查看回调函数callback,在function pushbu
2021-06-24 08:59:24
460
原创 2021-06-15
比较器(有符号与无符号)library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_arith.all;entity bijiaoqi is generic(n:integer:=7); Port(a,b:in unsigned(n downto 0); *或者a,b:in signed(n downto 0); 上面无符号,下面有符号比较* x1,x2,x3:out std_logic);End bi
2021-06-15 19:44:58
103
原创 2021-06-15
一位全加器(VHDL)library ieee;use ieee.std_logic_1164.all;entity add is port (a,b,cin:in bit; s,cout:out bit); end ; architecture bhv of add is begin s <= a xor b xor cin; cout<=(a and b)or(b and cin)or(cin and a); end bhv
2021-06-15 19:27:05
133
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅