Code covered by the BSD License  

Highlights from
[SigGraph2002] Image Quilting/Texture Synthesize

image thumbnail
from [SigGraph2002] Image Quilting/Texture Synthesize by Li Cheng
Matlab code to do Image Quilting as presented in the SIGGRAPH 2002 paper by Efros & Freeman.

example.m
texture = imread('yogurt.bmp');

figure;

imshow(texture);

figure;

outsize = size(texture)*3;
tilesize = 12;
overlapsize = 3;
isdebug = 0;

t2 = synthesize(texture,   outsize , tilesize, overlapsize,isdebug);

imshow(uint8(t2))

Contact us