• 大小: 77KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-10
  • 语言: Matlab
  • 标签: 金字塔  图像  MATLAB  

资源简介

本程序是对图像进行金字塔分解算法的MATLAB程序,简单,容易懂

资源截图

代码片段和文件信息

function   img_plane=planes_figure(img)
%==========================================================================
%计算一副图像的位面图
%img:输入图像
%img_plane:输出位面图数据,分别保存在1:8(代表位面0-7)个矩阵中
%==========================================================================
img=uint8(img);
[nxny]=size(img);
img_plane=zeros(nxny8);
bin_pixel=zeros(18);
for i=1:nx
    for j=1:ny
        temp=dec2binvec(double(img(ij)));
        bin_pixel=[tempzeros(18-length(temp))];
        for k=1:8
            if bin_pixel(k)==1
               img_plane(ijk)=1; 
            end
        end
    
    end
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      37559  2006-03-24 15:13  Bit_map\image_Cameraman256.png

     文件      40181  2005-10-05 10:41  Bit_map\image_Peppers256.png

     文件        645  2008-10-15 20:10  Bit_map\planes_figure.m

     文件        720  2009-09-18 09:42  Bit_map\planes_figure_demo.m

     文件        605  2008-10-15 21:36  Bit_map\planes_figure_inv.m

     目录          0  2009-10-03 15:07  Bit_map

----------- ---------  ---------- -----  ----

                79710                    6


评论

共有 条评论