Return to Snippet

Revision: 1712
at November 10, 2006 00:11 by whitetiger


Updated Code
function flipIMG=DoubleFlip(img)

    tic

    flipIMG = img([1:end/2, end/2:-1:1], [1:end/2, end/2:-1:1], :);

    toc

Revision: 1711
at November 9, 2006 23:54 by whitetiger


Initial Code
function flipIMG=DoubleFlip(img)

    tic

    flipIMG = img([1:end/2, end/2:-1:1], [1:end/2, end/2:-1:1], :);

    toc

Initial URL


Initial Description


Initial Title
Matlab - DoubleFlip Image

Initial Tags
image, java, filter, images

Initial Language
MatLab