登录 注册
当前位置:主页 > 资源下载 > 35 > MATLAB 2016b中imresize的C语言实现作为MATLAB内置函数集成

MATLAB 2016b中imresize的C语言实现作为MATLAB内置函数集成

  • 更新:2024-12-01 18:50:23
  • 大小:13KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Matlab - 大数据
  • 格式:ZIP

资源介绍

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