Seam Carving for content aware image resizing

版本 1.0.0.0 (1.3 KB) 作者: Aslak Grinsted
illustrative example of the seam carving algorithm.
16.4K 次下载
更新时间 2007/9/27

无许可证

编者注: This was a File Exchange Pick of the Week

illustrative example of Seam carving for content aware image resizing


usage: carvedimg=seamcarving(im,k)

k is how many vertical seams to remove.
im is the image.

example:
img=imread('peppers.png')
carvedimg=seamcarving(img,50)
image([carvedimg img]);
axis equal;

Author: Aslak Grinsted 2007...
Based on ideas from Avidan & Shamir:
http://video.google.com/videoplay?docid=-6221880321193117495
Note i haven't read their paper and they have probably lots of smart tricks for optimizations.

引用格式

Aslak Grinsted (2025). Seam Carving for content aware image resizing (https://ww2.mathworks.cn/matlabcentral/fileexchange/16123-seam-carving-for-content-aware-image-resizing), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R14
兼容任何版本
平台兼容性
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.0.0

* Removed demo dependency on the image processing toolbox.
* Made compatible with older versions of matlab.