/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANY - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *====================================================================*/ /* * webpio_reg.c * * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! * This is the Leptonica regression test for lossy read/write * I/O in webp format. * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! * * This tests reading and writing of images in webp format. * * webp supports 32 bpp rgb and rgba. * Lossy writing is slow; reading is fast, comparable to reading jpeg files. * Lossless writing is extremely slow. */ #ifdef HAVE_CONFIG_H #include #endif /* HAVE_CONFIG_H */ #include "allheaders.h" #include void DoWebpTest1(L_REGPARAMS *rp, const char *fname); void DoWebpTest2(L_REGPARAMS *rp, const char *fname, l_int32 quality, l_int32 lossless, l_float32 expected, l_float32 delta); int main(int argc, char **argv) { L_REGPARAMS *rp; if (regTestSetup(argc, argv, &rp)) return 1; #if !HAVE_LIBJPEG lept_stderr("libjpeg is required for webpio_reg\n\n"); regTestCleanup(rp); return 0; #endif /* abort */ #if !HAVE_LIBWEBP lept_stderr("webpio is not enabled\n" "libwebp is required for webpio_reg\n" "See environ.h: #define HAVE_LIBWEBP\n" "See prog/Makefile: link in -lwebp\n\n"); regTestCleanup(rp); return 0; #endif /* abort */ lept_rmdir("lept/webp"); lept_mkdir("lept/webp"); DoWebpTest1(rp, "weasel2.4c.png"); DoWebpTest1(rp, "weasel8.240c.png"); DoWebpTest1(rp, "karen8.jpg"); DoWebpTest1(rp, "test24.jpg"); DoWebpTest2(rp, "test24.jpg", 50, 0, 43.50, 1.0); DoWebpTest2(rp, "test24.jpg", 75, 0, 46.07, 1.0); DoWebpTest2(rp, "test24.jpg", 90, 0, 51.09, 2.0); DoWebpTest2(rp, "test24.jpg", 100, 0, 54.979, 5.0); DoWebpTest2(rp, "test24.jpg", 0, 1, 1000.0, 0.1); return regTestCleanup(rp); } void DoWebpTest1(L_REGPARAMS *rp, const char *fname) { char buf[256]; PIX *pixs, *pix1, *pix2; startTimer(); pixs = pixRead(fname); lept_stderr("Time to read jpg: %7.3f\n", stopTimer()); startTimer(); snprintf(buf, sizeof(buf), "/tmp/lept/webp/webpio.%d.webp", rp->index + 1); pixWrite(buf, pixs, IFF_WEBP); lept_stderr("Time to write webp: %7.3f\n", stopTimer()); regTestCheckFile(rp, buf); startTimer(); pix1 = pixRead(buf); lept_stderr("Time to read webp: %7.3f\n", stopTimer()); pix2 = pixConvertTo32(pixs); regTestCompareSimilarPix(rp, pix1, pix2, 20, 0.1, 0); pixDisplayWithTitle(pix1, 100, 100, "pix1", rp->display); pixDestroy(&pixs); pixDestroy(&pix1); pixDestroy(&pix2); return; } void DoWebpTest2(L_REGPARAMS *rp, const char *fname, l_int32 quality, l_int32 lossless, l_float32 expected, l_float32 delta) { char buf[256]; l_float32 psnr; PIX *pixs, *pix1; pixs = pixRead(fname); snprintf(buf, sizeof(buf), "/tmp/lept/webp/webpio.%d.webp", rp->index + 1); if (lossless) startTimer(); pixWriteWebP("/tmp/lept/webp/junk.webp", pixs, quality, lossless); if (lossless) lept_stderr("Lossless write: %7.3f sec\n", stopTimer()); pix1 = pixRead("/tmp/lept/webp/junk.webp"); pixGetPSNR(pixs, pix1, 4, &psnr); if (lossless) lept_stderr("lossless; psnr should be 1000: psnr = %7.3f\n", psnr); else lept_stderr("qual = %d, psnr = %7.3f\n", quality, psnr); regTestCompareValues(rp, expected, psnr, delta); pixDestroy(&pixs); pixDestroy(&pix1); return; }