• 大小: 441B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-01
  • 语言: Matlab
  • 标签: matlab  下采样  

资源简介

matlab 图像下采样代码,给定原始图像和下采样比例,得到下采样之后的图像矩阵

资源截图

代码片段和文件信息

function [img]=image_down_sample(imageration)
[mn] = size(image);
l = floor(m/ration);
c = floor(n/ration);
img_down = zeros(lc);
image = double(image);
for i=1:l
    for j=1:c
        sum = 0;
        for k=

评论

共有 条评论