• 大小: 1KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-05-14
  • 语言: Matlab
  • 标签: FPGA  Matlab  锐化  

资源简介

USM_Sharpen基于matlab的锐化程序,matlab程序中将矩阵左移10位扩展适用于fpga使用,下载后只需要修改图片路径即可直接验证使用。锐化效果还很不错。

资源截图

代码片段和文件信息

clc
clear
img=imread(‘D:\Prj\Ext_Prj\PC\image\5.jpg‘);  %对图像进行锐化

figure; imshow(img);
%   分别读取RGB
image_r=img(::1);
image_g=img(::2);
image_b=img(::3);
%  测试RGB输出
% figure;
% subplot(221)imshow(image_r)title(‘Red component‘);  
% subplot(222)imshow(image_g)title(‘green component‘);  
% subplot(223)imshow(image_b)title(‘blue component‘);  
% subplot(224)imshow(img)title(‘original image‘); 

[mn]=size(img);
img_r=double(image_r);img_g=double(image_g);img_b=double(image_b);

sigma=0.5;lamda=20;

gausFilter=round(fspecial(‘gaussian‘[33]sigma)*1024);
Mod_r=round(imfilter(img_rgausFilter‘replicate‘)/1024);
Mod

评论

共有 条评论