-
MATLAB 2016b中imresize的C语言实现作为MATLAB内置函数集成
资源介绍
Matlab集成的c代码MATLAB2016b-imresize
MATLAB内置函数imresize()的C实现
目录
开发环境
编码语言:C语言
集成开发环境(IDE):Microsoft
Visual
Studio
2017
用法
out_zoom
=
imresize(&ori,
&out_img_sz_zoom,
nearest,
true
);
//
Nearest
neighborhood,
Zoom,
Anti-aliasing
option:
true
(should
not
be
working
because
of
zooming)
out_down
=
imresize(&ori,
&out_img_sz_down,
nearest,
true
);
//
Nearest
neighborhood,
Down-scaling,
Anti-aliasing
option:
true
(should
not
be
working
because
of
'nearest'
option)
out_zoom
=
imresize(&ori,
&out_img_sz_zo