1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
/*====================================================================*
- 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.
*====================================================================*/
/*
* dewarp_reg.c
*
* Regression test for image dewarp based on text lines
*
* We also test some of the fpix and dpix functions (scaling,
* serialization, interconversion)
*/
#ifdef HAVE_CONFIG_H
#include <config_auto.h>
#endif /* HAVE_CONFIG_H */
#include "allheaders.h"
l_int32 main(int argc,
char **argv)
{
l_int32 i, n;
l_float32 a, b, c;
L_DEWARP *dew1, *dew2;
L_DEWARPA *dewa1, *dewa2;
DPIX *dpix1, *dpix2, *dpix3;
FPIX *fpix1, *fpix2, *fpix3;
NUMA *nax, *nafit;
PIX *pixs, *pixn, *pixg, *pixd, *pixb, *pix1, *pixt1, *pixt2;
PIX *pixs2, *pixn2, *pixg2, *pixb2;
PTA *pta, *ptad;
PTAA *ptaa1, *ptaa2;
L_REGPARAMS *rp;
if (regTestSetup(argc, argv, &rp))
return 1;
/* Read page 7, normalize for varying background and binarize */
pixs = pixRead("1555.007.jpg");
pixn = pixBackgroundNormSimple(pixs, NULL, NULL);
pixg = pixConvertRGBToGray(pixn, 0.5, 0.3, 0.2);
pixb = pixThresholdToBinary(pixg, 130);
pixDestroy(&pixn);
pixDestroy(&pixg);
regTestWritePixAndCheck(rp, pixb, IFF_PNG); /* 0 */
pixDisplayWithTitle(pixb, 0, 0, "page 7 binarized input", rp->display);
/* Get the textline centers */
ptaa1 = dewarpGetTextlineCenters(pixb, 0);
pixt1 = pixCreateTemplate(pixs);
pixt2 = pixDisplayPtaa(pixt1, ptaa1);
regTestWritePixAndCheck(rp, pixt2, IFF_PNG); /* 1 */
pixDisplayWithTitle(pixt2, 0, 500, "textline centers", rp->display);
pixDestroy(&pixt1);
/* Remove short lines */
ptaa2 = dewarpRemoveShortLines(pixb, ptaa1, 0.8, 0);
/* Fit to quadratic */
n = ptaaGetCount(ptaa2);
for (i = 0; i < n; i++) {
pta = ptaaGetPta(ptaa2, i, L_CLONE);
ptaGetArrays(pta, &nax, NULL);
ptaGetQuadraticLSF(pta, &a, &b, &c, &nafit);
ptad = ptaCreateFromNuma(nax, nafit);
pixDisplayPta(pixt2, pixt2, ptad);
ptaDestroy(&pta);
ptaDestroy(&ptad);
numaDestroy(&nax);
numaDestroy(&nafit);
}
regTestWritePixAndCheck(rp, pixt2, IFF_PNG); /* 2 */
pixDisplayWithTitle(pixt2, 300, 500, "fitted lines superimposed",
rp->display);
ptaaDestroy(&ptaa1);
ptaaDestroy(&ptaa2);
pixDestroy(&pixt2);
/* Build the model for page 7 and dewarp */
dewa1 = dewarpaCreate(2, 30, 1, 15, 30);
if ((dew1 = dewarpCreate(pixb, 7)) == NULL)
return ERROR_INT("\n\n\n FAILURE !!! \n\n\n", rp->testname, 1);
dewarpaUseBothArrays(dewa1, 1);
dewarpaInsertDewarp(dewa1, dew1);
dewarpBuildPageModel(dew1, NULL);
dewarpaApplyDisparity(dewa1, 7, pixb, 200, 0, 0, &pixd, NULL);
regTestWritePixAndCheck(rp, pixd, IFF_PNG); /* 3 */
pixDisplayWithTitle(pixd, 400, 0, "page 7 dewarped", rp->display);
pixDestroy(&pixd);
/* Read page 3, normalize background and binarize */
pixs2 = pixRead("1555.003.jpg");
pixn2 = pixBackgroundNormSimple(pixs2, NULL, NULL);
pixg2 = pixConvertRGBToGray(pixn2, 0.5, 0.3, 0.2);
pixb2 = pixThresholdToBinary(pixg2, 130);
pixDestroy(&pixn2);
pixDestroy(&pixg2);
regTestWritePixAndCheck(rp, pixb, IFF_PNG); /* 4 */
pixDisplayWithTitle(pixb, 0, 400, "binarized input (2)", rp->display);
/* Minimize and re-apply page 7 disparity to this image */
dewarpaInsertRefModels(dewa1, 0, 0);
dewarpaApplyDisparity(dewa1, 3, pixb2, 200, 0, 0, &pixd, NULL);
regTestWritePixAndCheck(rp, pixd, IFF_PNG); /* 5 */
pixDisplayWithTitle(pixd, 400, 400, "page 3 dewarped", rp->display);
pixDestroy(&pixd);
/* Write and read back minimized dewarp struct */
dewarpMinimize(dew1);
dewarpWrite("/tmp/lept/regout/dewarp.6.dew", dew1);
regTestCheckFile(rp, "/tmp/lept/regout/dewarp.6.dew"); /* 6 */
dew2 = dewarpRead("/tmp/lept/regout/dewarp.6.dew");
dewarpWrite("/tmp/lept/regout/dewarp.7.dew", dew2);
regTestCheckFile(rp, "/tmp/lept/regout/dewarp.7.dew"); /* 7 */
regTestCompareFiles(rp, 6, 7); /* 8 */
/* Apply this minimized dew to page 3 in a new dewa */
dewa2 = dewarpaCreate(2, 30, 1, 15, 30);
dewarpaUseBothArrays(dewa2, 1);
dewarpaInsertDewarp(dewa2, dew2);
dewarpaInsertRefModels(dewa2, 0, 0);
dewarpaListPages(dewa2); /* just for fun: should be 1, 3, 5, 7 */
dewarpaApplyDisparity(dewa2, 3, pixb2, 200, 0, 0, &pixd, NULL);
regTestWritePixAndCheck(rp, pixd, IFF_PNG); /* 9 */
pixDisplayWithTitle(pixd, 800, 400, "page 3 dewarped again", rp->display);
pixDestroy(&pixd);
/* Minimize, re-populate disparity arrays, and apply again */
dewarpMinimize(dew2);
dewarpaApplyDisparity(dewa2, 3, pixb2, 200, 0, 0, &pixd, NULL);
regTestWritePixAndCheck(rp, pixd, IFF_PNG); /* 10 */
regTestCompareFiles(rp, 9, 10); /* 11 */
pixDisplayWithTitle(pixd, 900, 400, "page 3 dewarped yet again",
rp->display);
pixDestroy(&pixd);
/* Test a few of the fpix functions */
if (!dew2) {
L_ERROR("dew2 doesn't exist !!!!\n", "dewarp_reg");
return 1;
}
fpix1 = fpixClone(dew2->sampvdispar);
fpixWrite("/tmp/lept/regout/dewarp.12.fpix", fpix1);
regTestCheckFile(rp, "/tmp/lept/regout/dewarp.12.fpix"); /* 12 */
fpix2 = fpixRead("/tmp/lept/regout/dewarp.12.fpix");
fpixWrite("/tmp/lept/regout/dewarp.13.fpix", fpix2);
regTestCheckFile(rp, "/tmp/lept/regout/dewarp.13.fpix"); /* 13 */
regTestCompareFiles(rp, 12, 13); /* 14 */
fpix3 = fpixScaleByInteger(fpix2, 30);
pix1 = fpixRenderContours(fpix3, 2.0, 0.2);
regTestWritePixAndCheck(rp, pix1, IFF_PNG); /* 15 */
pixDisplayWithTitle(pix1, 0, 800, "v. disparity contours", rp->display);
fpixDestroy(&fpix1);
fpixDestroy(&fpix2);
fpixDestroy(&fpix3);
/* Test a few of the dpix functions. Note that we can't compare
* 15 with 19, because of a tiny difference due to float roundoff,
* so we do an approximate comparison on the images. */
dpix1 = fpixConvertToDPix(dew2->sampvdispar);
dpixWrite("/tmp/lept/regout/dewarp.16.dpix", dpix1);
regTestCheckFile(rp, "/tmp/lept/regout/dewarp.16.dpix"); /* 16 */
dpix2 = dpixRead("/tmp/lept/regout/dewarp.16.dpix");
dpixWrite("/tmp/lept/regout/dewarp.17.dpix", dpix2);
regTestCheckFile(rp, "/tmp/lept/regout/dewarp.17.dpix"); /* 17 */
regTestCompareFiles(rp, 16, 17); /* 18 */
dpix3 = dpixScaleByInteger(dpix2, 30);
fpix3 = dpixConvertToFPix(dpix3);
pixt1 = fpixRenderContours(fpix3, 2.0, 0.2);
regTestWritePixAndCheck(rp, pixt1, IFF_PNG); /* 19 */
pixDisplayWithTitle(pixt1, 400, 800, "v. disparity contours", rp->display);
regTestCompareSimilarPix(rp, pix1, pixt1, 1, 0.00001, 0); /* 20 */
dpixDestroy(&dpix1);
dpixDestroy(&dpix2);
dpixDestroy(&dpix3);
fpixDestroy(&fpix3);
pixDestroy(&pix1);
pixDestroy(&pixt1);
dewarpaDestroy(&dewa1);
dewarpaDestroy(&dewa2);
pixDestroy(&pixs);
pixDestroy(&pixb);
pixDestroy(&pixs2);
pixDestroy(&pixb2);
return regTestCleanup(rp);
}
|