• 大小: 56KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: Matlab
  • 标签: Matlab  

资源简介

Matlab彩色双线性插值 Matlab彩色双线性插值

资源截图

代码片段和文件信息

% THIS PROGRAMME IS WRITTEN BY Rockins
% THE FEATURE IS BILINEAR-INTERPOLATE THE SOUCE-IMAGE TO GET A DESTINATE-IMAGE
% THE MAXIMUM SCALOR == 9.0 THE MINIMUM SCALOR == 1.0
% Copyright 2006-2007All Copyrights(C) Reserved by Rockins
% You can redistibute this programme under the GNU Less GPL license
% If you have any question about this programmeplease contact me via
% ybc2084@163.com

% read source image into memoryand get the primitive rows and cols
RGB = imread(‘FreeBSD.jpg‘);
R = RGB(::1);
G = RGB(::2);
B = RGB(::3);
[nrowsncolsncoms]=size(RGB);

% Next line is the scale-factorthe range is 1.0-9.0
K = str2double(inputdlg(‘please input scale factor (must between 1.0 - 9.0)‘ ‘INPUT scale factor‘ 1 {‘5.0‘}));

% Validating
if (K < 1.0) | (K > 9.0)
    err

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

     文件       3315  1990-05-03 17:09  bilinear_rgb\bilinear.m

     文件      40705  2006-08-10 16:37  bilinear_rgb\FreeBSD.jpg

     文件       3060  1990-05-03 16:25  bilinear_rgb\bilinear.asv

     文件      20309  1990-05-03 17:11  bilinear_rgb\FreeBSD2.jpg

     文件        430  2007-05-03 17:29  bilinear_rgb\说明.txt

     目录          0  2007-05-03 17:25  bilinear_rgb

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

                67819                    6


评论

共有 条评论