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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662
|
/*
* $Id: filters.c 26068 2023-12-20 12:25:29Z yeti-dn $
* Copyright (C) 2003-2021 David Necas (Yeti), Petr Klapetek.
* E-mail: yeti@gwyddion.net, klapetek@gwyddion.net.
*
* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any
* later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <string.h>
#include <libgwyddion/gwymacros.h>
#include <libprocess/filters.h>
#include <libprocess/arithmetic.h>
#include <libprocess/stats.h>
#include <libprocess/inttrans.h>
#include "libgwyddion/gwyomp.h"
#include "gwyprocessinternal.h"
static void thin_data_field(GwyDataField *data_field);
/**
* gwy_data_field_normalize:
* @data_field: A data field.
*
* Normalizes data in a data field to range 0.0 to 1.0.
*
* It is equivalent to gwy_data_field_renormalize(@data_field, 1.0, 0.0);
*
* If @data_field is filled with only one value, it is changed to 0.0.
**/
void
gwy_data_field_normalize(GwyDataField *data_field)
{
gdouble min, max;
gdouble *p;
gint xres, yres, i;
g_return_if_fail(GWY_IS_DATA_FIELD(data_field));
gwy_data_field_get_min_max(data_field, &min, &max);
if (min == max) {
gwy_data_field_clear(data_field);
return;
}
if (!min) {
if (max != 1.0)
gwy_data_field_multiply(data_field, 1.0/max);
return;
}
/* The general case */
max -= min;
xres = data_field->xres;
yres = data_field->yres;
for (i = xres*yres, p = data_field->data; i; i--, p++)
*p = (*p - min)/max;
/* We can transform some stats */
data_field->cached &= CBIT(MIN) | CBIT(MAX) | CBIT(SUM) | CBIT(RMS) | CBIT(MED) | CBIT(ARF) | CBIT(ART);
CVAL(data_field, MIN) = 0.0;
CVAL(data_field, MAX) = 1.0;
CVAL(data_field, SUM) /= (CVAL(data_field, SUM) - xres*yres*min)/max;
CVAL(data_field, RMS) /= max;
CVAL(data_field, MED) = (CVAL(data_field, MED) - min)/max;
CVAL(data_field, ART) = (CVAL(data_field, ART) - min)/max;
CVAL(data_field, ARF) = (CVAL(data_field, ARF) - min)/max;
/* There is a transformation formula for MSQ, but it can be prone to ugly cancellation errors. */
}
/**
* gwy_data_field_renormalize:
* @data_field: A data field.
* @range: New data interval size.
* @offset: New data interval offset.
*
* Transforms data in a data field with linear function to given range.
*
* When @range is positive, the new data range is (@offset, @offset+@range); when @range is negative, the new data
* range is (@offset-@range, @offset). In neither case the data are flipped, negative range only means different
* selection of boundaries.
*
* When @range is zero, this method is equivalent to gwy_data_field_fill(@data_field, @offset).
**/
void
gwy_data_field_renormalize(GwyDataField *data_field,
gdouble range,
gdouble offset)
{
gdouble min, max, v;
gdouble *d;
gint xres, yres, n, i;
g_return_if_fail(GWY_IS_DATA_FIELD(data_field));
if (!range) {
gwy_data_field_fill(data_field, offset);
return;
}
gwy_data_field_get_min_max(data_field, &min, &max);
if (min == max) {
gwy_data_field_fill(data_field, offset);
return;
}
if ((range > 0 && min == offset && min + range == max) || (range < 0 && max == offset && min - range == max))
return;
/* The general case */
xres = data_field->xres;
yres = data_field->yres;
n = xres*yres;
d = data_field->data;
if (range > 0) {
max -= min;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i) \
shared(d,n,min,max,range,offset)
#endif
for (i = 0; i < n; i++)
d[i] = (d[i] - min)/max*range + offset;
/* We can transform stats */
data_field->cached &= CBIT(MIN) | CBIT(MAX) | CBIT(SUM) | CBIT(RMS) | CBIT(MED);
CVAL(data_field, MIN) = offset;
CVAL(data_field, MAX) = offset + range;
v = CVAL(data_field, SUM);
CVAL(data_field, SUM) = (v - n*min)/max*range + offset*n;
CVAL(data_field, RMS) = CVAL(data_field, RMS)/max*range;
CVAL(data_field, MED) = (CVAL(data_field, MED) - min)/max*range + offset;
/* FIXME: we can recompute ARF and ART too */
/* There is a transformation formula for MSQ, but it can be prone to ugly cancellation errors. */
}
else {
min = max - min;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i) \
shared(d,n,min,max,range,offset)
#endif
for (i = 0; i < n; i++)
d[i] = (max - d[i])/min*range + offset;
/* We can transform stats */
data_field->cached &= CBIT(MIN) | CBIT(MAX) | CBIT(SUM) | CBIT(RMS) | CBIT(MED);
CVAL(data_field, MIN) = offset + range;
CVAL(data_field, MAX) = offset;
v = CVAL(data_field, SUM);
CVAL(data_field, SUM) = (xres*yres*max - v)/min*range + offset*xres*yres;
CVAL(data_field, RMS) = CVAL(data_field, RMS)/min*(-range);
CVAL(data_field, MED) = (max - CVAL(data_field, MED))/min*range + offset;
/* FIXME: we can recompute ARF and ART too */
/* There is a transformation formula for MSQ, but it can be prone to ugly cancellation errors. */
}
}
/**
* gwy_data_field_area_renormalize:
* @data_field: A data field.
* @col: Upper-left column coordinate.
* @row: Upper-left row coordinate.
* @width: Area width (number of columns).
* @height: Area height (number of rows).
* @range: New data interval size.
* @offset: New data interval offset.
*
* Transforms data in a part of a data field with linear function to given range.
*
* When @range is positive, the new data range is (@offset, @offset+@range); when @range is negative, the new data
* range is (@offset-@range, @offset). In neither case the data are flipped, negative range only means different
* selection of boundaries.
*
* When @range is zero, this method is equivalent to gwy_data_field_fill(@data_field, @offset).
*
* Since: 2.45
**/
void
gwy_data_field_area_renormalize(GwyDataField *dfield,
gint col, gint row,
gint width, gint height,
gdouble range,
gdouble offset)
{
gdouble min, max;
gdouble *d, *r;
gint xres, yres, i, j;
if (!_gwy_data_field_check_area(dfield, col, row, width, height, TRUE))
return;
xres = dfield->xres;
yres = dfield->yres;
if (col == 0 && row == 0 && width == xres && height == yres) {
gwy_data_field_renormalize(dfield, range, offset);
return;
}
if (!range) {
gwy_data_field_area_fill(dfield, col, row, width, height, offset);
return;
}
gwy_data_field_area_get_min_max_mask(dfield, NULL, GWY_MASK_IGNORE, col, row, width, height, &min, &max);
if (min == max) {
gwy_data_field_area_fill(dfield, col, row, width, height, offset);
return;
}
if ((range > 0 && min == offset && min + range == max) || (range < 0 && max == offset && min - range == max))
return;
/* The general case */
d = dfield->data;
if (range > 0) {
max -= min;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i,j,r) \
shared(d,width,height,col,row,xres,min,max,range,offset)
#endif
for (i = 0; i < height; i++) {
r = d + (i + row)*xres + col;
for (j = 0; j < width; j++)
r[j] = (r[j] - min)/max*range + offset;
}
}
else {
min = max - min;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i,j,r) \
shared(d,width,height,col,row,xres,min,max,range,offset)
#endif
for (i = 0; i < height; i++) {
r = d + (i + row)*xres + col;
for (j = 0; j < width; j++)
r[j] = (max - r[j])/min*range + offset;
}
}
gwy_data_field_invalidate(dfield);
}
/**
* gwy_data_field_threshold:
* @data_field: A data field.
* @threshval: Threshold value.
* @bottom: Lower replacement value.
* @top: Upper replacement value.
*
* Tresholds values of a data field.
*
* Values smaller than @threshold are set to value @bottom, values higher than @threshold or equal to it are set to
* value @top
*
* Returns: The total number of values above threshold.
**/
gint
gwy_data_field_threshold(GwyDataField *data_field,
gdouble threshval, gdouble bottom, gdouble top)
{
gint i, n, tot = 0;
gdouble *d;
g_return_val_if_fail(GWY_IS_DATA_FIELD(data_field), 0);
n = data_field->xres * data_field->yres;
d = data_field->data;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
reduction(+:tot) \
private(i) \
shared(d,n,threshval,bottom,top)
#endif
for (i = 0; i < n; i++) {
if (d[i] < threshval)
d[i] = bottom;
else {
d[i] = top;
tot++;
}
}
/* We can precompute stats */
data_field->cached = CBIT(MIN) | CBIT(MAX) | CBIT(SUM) | CBIT(RMS) | CBIT(MED);
if (tot == n)
CVAL(data_field, MIN) = CVAL(data_field, MAX) = top;
else if (tot == 0)
CVAL(data_field, MIN) = CVAL(data_field, MAX) = bottom;
else {
CVAL(data_field, MIN) = MIN(top, bottom);
CVAL(data_field, MAX) = MAX(top, bottom);
}
CVAL(data_field, SUM) = tot*top + (n - tot)*bottom;
CVAL(data_field, RMS) = (top - bottom)*(top - bottom) * tot/(gdouble)n * (n - tot)/(gdouble)n;
/* FIXME: may be incorrect for tot == n/2(?) */
CVAL(data_field, MED) = tot > n/2 ? top : bottom;
return tot;
}
/**
* gwy_data_field_area_threshold:
* @data_field: A data field.
* @col: Upper-left column coordinate.
* @row: Upper-left row coordinate.
* @width: Area width (number of columns).
* @height: Area height (number of rows).
* @threshval: Threshold value.
* @bottom: Lower replacement value.
* @top: Upper replacement value.
*
* Tresholds values of a rectangular part of a data field.
*
* Values smaller than @threshold are set to value @bottom, values higher than @threshold or equal to it are set to
* value @top
*
* Returns: The total number of values above threshold.
**/
gint
gwy_data_field_area_threshold(GwyDataField *data_field,
gint col, gint row, gint width, gint height,
gdouble threshval, gdouble bottom, gdouble top)
{
gint xres, i, j, tot = 0;
gdouble *d;
if (!_gwy_data_field_check_area(data_field, col, row, width, height, TRUE))
return 0;
d = data_field->data;
xres = data_field->xres;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
reduction(+:tot) \
private(i,j) \
shared(d,width,height,xres,col,row,threshval,bottom,top)
#endif
for (i = 0; i < height; i++) {
gdouble *drow = d + (row + i)*xres + col;
for (j = 0; j < width; j++) {
if (drow[j] < threshval)
drow[j] = bottom;
else {
drow[j] = top;
tot++;
}
}
}
gwy_data_field_invalidate(data_field);
return tot;
}
/**
* gwy_data_field_clamp:
* @data_field: A data field.
* @bottom: Lower limit value.
* @top: Upper limit value.
*
* Limits data field values to a range.
*
* Returns: The number of changed values, i.e., values that were outside [@bottom, @top].
**/
gint
gwy_data_field_clamp(GwyDataField *data_field,
gdouble bottom, gdouble top)
{
gint i, n, tot = 0;
gdouble *d = data_field->data;
g_return_val_if_fail(GWY_IS_DATA_FIELD(data_field), 0);
g_return_val_if_fail(bottom <= top, 0);
n = data_field->xres * data_field->yres;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
reduction(+:tot) \
private(i) \
shared(d,n,bottom,top)
#endif
for (i = 0; i < n; i++) {
if (d[i] < bottom) {
d[i] = bottom;
tot++;
}
else if (d[i] > top) {
d[i] = top;
tot++;
}
}
if (tot) {
/* We can precompute stats */
data_field->cached &= CBIT(MIN) | CBIT(MAX) | CBIT(MED);
CVAL(data_field, MIN) = MAX(bottom, CVAL(data_field, MIN));
CVAL(data_field, MAX) = MIN(top, CVAL(data_field, MAX));
if (CTEST(data_field, MED) && (CVAL(data_field, MED) < bottom || CVAL(data_field, MED) > top))
data_field->cached &= ~CBIT(MED);
}
return tot;
}
/**
* gwy_data_field_area_clamp:
* @data_field: A data field.
* @col: Upper-left column coordinate.
* @row: Upper-left row coordinate.
* @width: Area width (number of columns).
* @height: Area height (number of rows).
* @bottom: Lower limit value.
* @top: Upper limit value.
*
* Limits values in a rectangular part of a data field to a range.
*
* Returns: The number of changed values, i.e., values that were outside [@bottom, @top].
**/
gint
gwy_data_field_area_clamp(GwyDataField *data_field,
gint col, gint row,
gint width, gint height,
gdouble bottom, gdouble top)
{
gint xres, i, j, tot = 0;
gdouble *d;
if (!_gwy_data_field_check_area(data_field, col, row, width, height, TRUE))
return 0;
d = data_field->data;
xres = data_field->xres;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
reduction(+:tot) \
private(i,j) \
shared(d,xres,width,height,col,row,bottom,top)
#endif
for (i = 0; i < height; i++) {
gdouble *drow = d + (row + i)*xres + col;
for (j = 0; j < width; j++) {
if (drow[j] < bottom) {
drow[j] = bottom;
tot++;
}
else if (drow[j] > top) {
drow[j] = top;
tot++;
}
}
}
if (tot)
gwy_data_field_invalidate(data_field);
return tot;
}
/**
* gwy_data_field_area_gather:
* @data_field: A data field.
* @result: A data field to put the result to, it may be @data_field itself.
* @buffer: A data field to use as a scratch area, its size must be at least @width*@height. May be %NULL to allocate
* a private temporary buffer.
* @col: Upper-left column coordinate.
* @row: Upper-left row coordinate.
* @width: Area width (number of columns).
* @height: Area height (number of rows).
* @hsize: Horizontal size of gathered area. The area is centered around each sample if @hsize is odd, it extends one
* pixel more to the right if @hsize is even.
* @vsize: Vertical size of gathered area. The area is centered around each sample if @vsize is odd, it extends one
* pixel more down if @vsize is even.
* @average: %TRUE to divide resulting sums by the number of involved samples to get averages instead of sums.
*
* Sums or averages values in reactangular areas around each sample in a data field.
*
* When the gathered area extends out of calculation area, only samples from their intersection are taken into the
* local sum (or average).
*
* There are no restrictions on values of @hsize and @vsize with regard to @width and @height, but they have to be
* positive.
*
* The result is calculated by the means of two-dimensional rolling sums. One one hand it means the calculation time
* depends linearly on (@width + @hsize)*(@height + @vsize) instead of @width*@hsize*@height*@vsize. On the other
* hand it means absolute rounding errors of all output values are given by the largest input values, that is relative
* precision of results small in absolute value may be poor.
**/
void
gwy_data_field_area_gather(GwyDataField *data_field,
GwyDataField *result,
GwyDataField *buffer,
gint hsize,
gint vsize,
gboolean average,
gint col, gint row,
gint width, gint height)
{
const gdouble *srow, *trow;
gdouble *drow, *r;
gint xres, yres, i, j, m;
gint hs2p, hs2m, vs2p, vs2m;
gdouble v;
g_return_if_fail(hsize > 0 && vsize > 0);
if (!_gwy_data_field_check_area(data_field, col, row, width, height, FALSE))
return;
xres = data_field->xres;
yres = data_field->yres;
g_return_if_fail(GWY_IS_DATA_FIELD(result));
g_return_if_fail(result->xres == xres && result->yres == yres);
if (buffer) {
g_return_if_fail(GWY_IS_DATA_FIELD(buffer));
g_return_if_fail(buffer->xres*buffer->yres >= width*height);
g_object_ref(buffer);
}
else
buffer = gwy_data_field_new(width, height, 1.0, 1.0, FALSE);
/* Extension to the left and to the right (for asymmetric sizes extend to the right more) */
hs2m = (hsize - 1)/2;
hs2p = hsize/2;
vs2m = (vsize - 1)/2;
vs2p = vsize/2;
/* Row-wise sums */
/* FIXME: This is inefficient, split the inner loops to explicitly according to the conditions inside */
for (i = 0; i < height; i++) {
srow = data_field->data + (i + row)*xres + col;
drow = buffer->data + i*width;
/* Left half */
drow[0] = 0.0;
m = MIN(hs2p, width-1);
for (j = 0; j <= m; j++)
drow[0] += srow[j];
for (j = 1; j < width/2; j++) {
v = ((j + hs2p < width ? srow[j + hs2p] : 0.0) - (j-1 - hs2m >= 0 ? srow[j-1 - hs2m] : 0.0));
drow[j] = drow[j-1] + v;
}
/* Right half */
drow[width-1] = 0.0;
m = width-1 - MIN(hs2m, width-1);
for (j = width-1; j >= m; j--)
drow[width-1] += srow[j];
for (j = width-2; j >= width/2; j--) {
v = ((j - hs2m >= 0 ? srow[j - hs2m] : 0.0) - (j+1 + hs2p < width ? srow[j+1 + hs2p] : 0.0));
drow[j] = drow[j+1] + v;
}
}
/* Column-wise sums (but iterate row-wise to access memory linearly) */
/* Top half */
r = result->data;
drow = r + row*xres + col;
for (j = 0; j < width; j++)
drow[j] = 0.0;
m = MIN(vs2p, height-1);
for (i = 0; i <= m; i++) {
srow = buffer->data + i*width;
for (j = 0; j < width; j++)
drow[j] += srow[j];
}
for (i = 1; i < height/2; i++) {
drow = r + (i + row)*xres + col;
if (i + vs2p < height) {
srow = buffer->data + (i + vs2p)*width;
if (i-1 - vs2m >= 0) {
trow = buffer->data + (i-1 - vs2m)*width;
for (j = 0; j < width; j++)
drow[j] = *(drow + j - xres) + (srow[j] - trow[j]);
}
else {
for (j = 0; j < width; j++)
drow[j] = *(drow + j - xres) + srow[j];
}
}
else {
if (G_UNLIKELY(i-1 - vs2m >= 0)) {
g_warning("Me thinks pure subtraction cannot occur.");
trow = buffer->data + (i-1 - vs2m)*width;
for (j = 0; j < width; j++)
drow[j] = *(drow + j - xres) - trow[j];
}
else {
for (j = 0; j < width; j++)
drow[j] = *(drow + j - xres);
}
}
}
/* Bottom half */
drow = r + (height-1 + row)*xres + col;
for (j = 0; j < width; j++)
drow[j] = 0.0;
m = height-1 - MIN(vs2m, height-1);
for (i = height-1; i >= m; i--) {
srow = buffer->data + i*width;
for (j = 0; j < width; j++)
drow[j] += srow[j];
}
for (i = height-2; i >= height/2; i--) {
drow = r + (i + row)*xres + col;
if (i+1 + vs2p < height) {
srow = buffer->data + (i+1 + vs2p)*width;
if (G_LIKELY(i - vs2m >= 0)) {
trow = buffer->data + (i - vs2m)*width;
for (j = 0; j < width; j++)
drow[j] = drow[j + xres] + (trow[j] - srow[j]);
}
else {
g_warning("Me thinks pure subtraction cannot occur.");
for (j = 0; j < width; j++)
drow[j] = drow[j + xres] - srow[j];
}
}
else {
if (i - vs2m >= 0) {
trow = buffer->data + (i - vs2m)*width;
for (j = 0; j < width; j++)
drow[j] = drow[j + xres] + trow[j];
}
else {
for (j = 0; j < width; j++)
drow[j] = drow[j + xres];
}
}
}
gwy_data_field_invalidate(result);
g_object_unref(buffer);
if (!average)
return;
/* Divide sums by the numbers of pixels that entered them */
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i,j) \
shared(r,width,height,xres,row,col,vsize,hsize,vs2m,vs2p,hs2m,hs2p)
#endif
for (i = 0; i < height; i++) {
gint iw;
if (i <= vs2m)
iw = vs2p + 1 + i;
else if (i >= height-1 - vs2p)
iw = vs2m + height - i;
else
iw = vsize;
iw = MIN(iw, height);
for (j = 0; j < width; j++) {
gint jw;
if (j <= hs2m)
jw = hs2p + 1 + j;
else if (j >= width-1 - hs2p)
jw = hs2m + width - j;
else
jw = hsize;
jw = MIN(jw, width);
r[(i + row)*xres + j + col] /= iw*jw;
}
}
}
/**
* gwy_data_field_area_filter_mean:
* @data_field: A data field to apply the filter to.
* @size: Averaged area size.
* @col: Upper-left column coordinate.
* @row: Upper-left row coordinate.
* @width: Area width (number of columns).
* @height: Area height (number of rows).
*
* Filters a rectangular part of a data field with mean filter of size @size.
*
* This method is a simple gwy_data_field_area_gather() wrapper, so the kernel is square. Use convolution
* gwy_data_field_area_ext_convolve() to perform a mean filter with different, for instance circular, kernel.
**/
void
gwy_data_field_area_filter_mean(GwyDataField *data_field,
gint size,
gint col, gint row,
gint width, gint height)
{
gwy_data_field_area_gather(data_field, data_field, NULL, size, size, TRUE, col, row, width, height);
}
/**
* gwy_data_field_filter_mean:
* @data_field: A data field to apply the filter to.
* @size: Averaged area size.
*
* Filters a data field with mean filter of size @size.
*
* This method is a simple gwy_data_field_area_gather() wrapper, so the kernel is square. Use convolution
* gwy_data_field_area_ext_convolve() to perform a mean filter with different, for instance circular, kernel.
**/
void
gwy_data_field_filter_mean(GwyDataField *data_field,
gint size)
{
g_return_if_fail(GWY_IS_DATA_FIELD(data_field));
gwy_data_field_area_filter_mean(data_field, size, 0, 0, data_field->xres, data_field->yres);
}
/**
* gwy_data_field_area_filter_rms:
* @data_field: A data field to apply RMS filter to.
* @size: Area size.
* @col: Upper-left column coordinate.
* @row: Upper-left row coordinate.
* @width: Area width (number of columns).
* @height: Area height (number of rows).
*
* Filters a rectangular part of a data field with RMS filter of size @size.
*
* RMS filter computes root mean square in given area.
**/
void
gwy_data_field_area_filter_rms(GwyDataField *data_field,
gint size,
gint col, gint row,
gint width, gint height)
{
GwyDataField *avg2, *buffer;
gint i, j;
const gdouble *arow;
gdouble *drow;
if (!_gwy_data_field_check_area(data_field, col, row, width, height, TRUE))
return;
g_return_if_fail(size > 0);
if (size == 1) {
gwy_data_field_clear(data_field);
return;
}
avg2 = gwy_data_field_area_extract(data_field, col, row, width, height);
for (i = 0; i < width*height; i++)
avg2->data[i] *= avg2->data[i];
buffer = gwy_data_field_new_alike(avg2, FALSE);
gwy_data_field_area_gather(avg2, avg2, buffer, size, size, TRUE, 0, 0, width, height);
gwy_data_field_area_gather(data_field, data_field, buffer, size, size, TRUE, col, row, width, height);
g_object_unref(buffer);
for (i = 0; i < height; i++) {
arow = avg2->data + i*width;
drow = data_field->data + (i + row)*data_field->xres + col;
for (j = 0; j < width; j++) {
drow[j] = arow[j] - drow[j]*drow[j];
drow[j] = sqrt(MAX(drow[j], 0.0));
}
}
g_object_unref(avg2);
gwy_data_field_invalidate(data_field);
}
/**
* gwy_data_field_filter_rms:
* @data_field: A data field to apply RMS filter to.
* @size: Area size.
*
* Filters a data field with RMS filter.
**/
void
gwy_data_field_filter_rms(GwyDataField *data_field,
gint size)
{
g_return_if_fail(GWY_IS_DATA_FIELD(data_field));
gwy_data_field_area_filter_rms(data_field, size, 0, 0, data_field->xres, data_field->yres);
}
/**
* gwy_data_field_filter_canny:
* @data_field: A data field to apply the filter to.
* @threshold: Slope detection threshold (range 0..1).
*
* Filters a rectangular part of a data field with canny edge detector filter.
**/
void
gwy_data_field_filter_canny(GwyDataField *data_field,
gdouble threshold)
{
GwyDataField *sobel_horizontal;
GwyDataField *sobel_vertical;
gint i, j, k;
gint xres, yres, n;
gdouble angle, min, max;
gint pass;
gdouble *data, *svdata, *shdata;
g_return_if_fail(GWY_IS_DATA_FIELD(data_field));
sobel_horizontal = gwy_data_field_duplicate(data_field);
sobel_vertical = gwy_data_field_duplicate(data_field);
gwy_data_field_filter_sobel(sobel_horizontal, GWY_ORIENTATION_HORIZONTAL);
gwy_data_field_filter_sobel(sobel_vertical, GWY_ORIENTATION_VERTICAL);
data = data_field->data;
xres = data_field->xres;
yres = data_field->yres;
n = xres*yres;
svdata = sobel_vertical->data;
shdata = sobel_horizontal->data;
for (k = 0; k < n; k++)
data[k] = fabs(shdata[k]) + fabs(svdata[k]);
gwy_data_field_invalidate(data_field);
gwy_data_field_get_min_max(data_field, &min, &max);
threshold = min + (max - min)*threshold;
/* We do not need sobel array more, so use sobel_horizontal to store data
* results. */
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i,j,pass,angle) \
shared(data,shdata,svdata,xres,yres,threshold)
#endif
for (i = 1; i < yres-1; i++) {
for (j = 1; j < xres-1; j++) {
pass = 0;
if (data[i*xres + j] > threshold) {
angle = atan2(svdata[i*xres + j], shdata[i*xres + j]);
if (angle < 0.3925 || angle > 5.8875 || (angle > 2.7475 && angle < 3.5325)) {
if (data[j + 1 + xres*i] > threshold)
pass = 1;
}
else if ((angle > 1.178 && angle < 1.9632) || (angle > 4.318 && angle < 5.1049)) {
if (data[j + 1 + xres*(i + 1)] > threshold)
pass = 1;
}
else {
if (data[j + xres*(i + 1)] > threshold)
pass = 1;
}
}
shdata[i*xres + j] = pass;
}
}
/*result is now in sobel_horizontal field*/
gwy_data_field_copy(sobel_horizontal, data_field, FALSE);
g_object_unref(sobel_horizontal);
g_object_unref(sobel_vertical);
/*thin the lines*/
thin_data_field(data_field);
}
/**
* gwy_data_field_filter_slope:
* @data_field: A data field to apply the filter to.
* @xder: Data field where the x-derivative is to be stored, or %NULL if you are only interested in the y-derivative.
* It will be resized to match @data_field.
* @yder: Data field where the y-derivative is to be stored, or %NULL if you are only interested in the x-derivative.
* It will be resized to match @data_field.
*
* Calculates x and y derivaties for an entire field.
*
* The derivatives are in physical units (not pixel-wise) and calculated from simple symmetrical differences, except at
* the edges where the differences are one-sided.
*
* Since: 2.37
**/
void
gwy_data_field_filter_slope(GwyDataField *data_field,
GwyDataField *xder,
GwyDataField *yder)
{
guint xres, yres, i, j;
gdouble dx, dy;
const gdouble *d;
gdouble *bx, *by;
g_return_if_fail(GWY_IS_DATA_FIELD(data_field));
g_return_if_fail(!xder || GWY_IS_DATA_FIELD(xder));
g_return_if_fail(!yder || GWY_IS_DATA_FIELD(yder));
if (!xder && !yder)
return;
xres = data_field->xres;
yres = data_field->yres;
if (xder) {
gwy_data_field_resample(xder, xres, yres, GWY_INTERPOLATION_NONE);
xder->xreal = data_field->xreal;
xder->yreal = data_field->yreal;
xder->xoff = data_field->xoff;
xder->yoff = data_field->yoff;
gwy_si_unit_assign(gwy_data_field_get_si_unit_xy(xder), gwy_data_field_get_si_unit_xy(data_field));
gwy_si_unit_divide(gwy_data_field_get_si_unit_z(data_field), gwy_data_field_get_si_unit_xy(data_field),
gwy_data_field_get_si_unit_z(xder));
}
if (yder) {
gwy_data_field_resample(yder, xres, yres, GWY_INTERPOLATION_NONE);
yder->xreal = data_field->xreal;
yder->yreal = data_field->yreal;
yder->xoff = data_field->xoff;
yder->yoff = data_field->yoff;
gwy_si_unit_assign(gwy_data_field_get_si_unit_xy(xder), gwy_data_field_get_si_unit_xy(data_field));
gwy_si_unit_divide(gwy_data_field_get_si_unit_z(data_field), gwy_data_field_get_si_unit_xy(data_field),
gwy_data_field_get_si_unit_z(xder));
}
dx = gwy_data_field_get_dx(data_field);
dy = gwy_data_field_get_dy(data_field);
d = data_field->data;
bx = xder ? xder->data : NULL;
by = yder ? yder->data : NULL;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i,j) \
shared(d,bx,by,dx,dy,xres,yres)
#endif
for (i = 0; i < yres; i++) {
const gdouble *row = d + i*xres, *prev = row - xres, *next = row + xres;
gdouble *bxrow = (bx && xres > 1) ? bx + i*xres : NULL;
gdouble *byrow = (by && yres > 1) ? by + i*xres : NULL;
for (j = 0; j < xres; j++) {
gdouble xd, yd;
if (bxrow) {
if (!j)
xd = row[j + 1] - row[j];
else if (j == xres-1)
xd = row[j] - row[j - 1];
else
xd = (row[j + 1] - row[j - 1])/2;
bxrow[j] = xd/dx;
}
if (byrow) {
if (!i)
yd = next[j] - row[j];
else if (i == yres-1)
yd = row[j] - prev[j];
else
yd = (next[j] - prev[j])/2;
byrow[j] = yd/dy;
}
}
}
if (xder) {
if (xres == 1)
gwy_data_field_clear(xder);
else
gwy_data_field_invalidate(xder);
}
if (yder) {
if (yres == 1)
gwy_data_field_clear(yder);
else
gwy_data_field_invalidate(yder);
}
}
/**
* gwy_data_field_filter_gauss_step:
* @data_field: A data field to apply the filter to.
* @sigma: Gaussian filter width (in pixels).
*
* Processes a data field with Gaussian step detection filter.
*
* The filter is a multi-directional combination of convolutions with Gaussian multiplied by a signed step function.
*
* The resulting values correspond roughly to the step height around the pixel.
*
* Since: 2.54
**/
void
gwy_data_field_filter_gauss_step(GwyDataField *data_field, gdouble sigma)
{
GwyDataField *extfield, *kernel, *freal, *fimag, *kreal, *kimag, *gauss;
guint ext, extx, exty, extxres, extyres, extn, xres, yres, i, n, idir, ndirs = 6;
gdouble *fre, *fim, *g, *k, *kre, *kim, *f, *d;
gdouble gs;
g_return_if_fail(GWY_IS_DATA_FIELD(data_field));
g_return_if_fail(sigma >= 0.0);
if (sigma < 1e-9) {
gwy_data_field_clear(data_field);
return;
}
ext = GWY_ROUND(3.0*sigma) + 1;
xres = data_field->xres;
yres = data_field->yres;
n = xres*yres;
extx = gwy_fft_find_nice_size(xres + ext) - xres;
exty = gwy_fft_find_nice_size(yres + ext) - yres;
extfield = gwy_data_field_extend(data_field, extx/2, extx - extx/2, exty/2, exty - exty/2,
GWY_EXTERIOR_BORDER_EXTEND, 0.0, FALSE);
extxres = extfield->xres;
extyres = extfield->yres;
extn = extxres*extyres;
freal = gwy_data_field_new_alike(extfield, FALSE);
fimag = gwy_data_field_new_alike(extfield, FALSE);
kernel = gwy_data_field_new_alike(extfield, FALSE);
k = kernel->data;
kreal = gwy_data_field_new_alike(extfield, FALSE);
kimag = gwy_data_field_new_alike(extfield, FALSE);
kre = kreal->data;
kim = kimag->data;
/* Subtract background on scale much larger than sigma. */
gauss = gwy_data_field_new_alike(extfield, FALSE);
g = gwy_data_field_get_data(gauss);
gs = 0.0;
#ifdef _OPENMP
#pragma omp parallel for if (gwy_threads_are_enabled()) default(none) \
reduction(+:gs) \
shared(extxres,extyres,g,sigma) \
private(i)
#endif
for (i = 0; i < extyres; i++) {
guint j, m = i*extxres;
gdouble y = (i < (extyres + 1)/2 ? i : extyres-i)/(10.0*sigma);
for (j = 0; j < extxres; j++, m++) {
gdouble x = (j < (extxres + 1)/2 ? j : extxres-j)/(10.0*sigma);
g[m] = exp(-x*x-y*y);
gs += g[m];
}
}
gwy_data_field_multiply(gauss, 1.0/gs);
gwy_data_field_copy(extfield, kernel, FALSE);
/* FIXME: We could do this in frequency space and directly modify freal
* and fimag. */
gwy_data_field_fft_convolve(kernel, gauss);
gwy_data_field_subtract_fields(extfield, extfield, kernel);
gwy_data_field_2dfft_raw(extfield, NULL, freal, fimag, GWY_TRANSFORM_DIRECTION_FORWARD);
fre = freal->data;
fim = fimag->data;
/* Prepare a Gaussian. */
#ifdef _OPENMP
#pragma omp parallel for if (gwy_threads_are_enabled()) default(none) \
shared(extxres,extyres,g,sigma) \
private(i)
#endif
for (i = 0; i < extyres; i++) {
guint j, m = i*extxres;
gdouble y = (i < (extyres + 1)/2 ? i : extyres-i)/sigma;
for (j = 0; j < extxres; j++, m++) {
gdouble x = (j < (extxres + 1)/2 ? j : extxres-j)/sigma;
g[m] = exp(-x*x-y*y);
}
}
g[0] = 0.0;
gs = gwy_data_field_get_sum(gauss);
/* Convolve with the Gaussian multiplied by rotated signum function. */
gwy_data_field_clear(extfield);
f = extfield->data;
for (idir = 0; idir < ndirs; idir++) {
gdouble phi = (idir + 0.5)/ndirs*G_PI;
gdouble cphi = cos(phi), sphi = sin(phi);
#ifdef _OPENMP
#pragma omp parallel for if (gwy_threads_are_enabled()) default(none) \
shared(extxres,extyres,g,k,sigma,cphi,sphi) \
private(i)
#endif
for (i = 0; i < extyres; i++) {
gdouble y = (i < (extyres + 1)/2 ? i/sigma : (extyres-i)/(-sigma));
guint j, m = i*extxres;
for (j = 0; j < extxres; j++, m++) {
gdouble x = (j < (extxres + 1)/2 ? j/sigma : (extxres-j)/(-sigma));
gdouble v = x*cphi + y*sphi;
if (G_UNLIKELY(fabs(v) < 1e-9))
k[m] = 0.0;
else
k[m] = g[m]*((v > 0.0) - 0.5);
}
}
gwy_data_field_2dfft_raw(kernel, NULL, kreal, kimag, GWY_TRANSFORM_DIRECTION_FORWARD);
#ifdef _OPENMP
#pragma omp parallel for if (gwy_threads_are_enabled()) default(none) \
shared(extn,kre,kim,fre,fim) \
private(i)
#endif
for (i = 0; i < extn; i++) {
gdouble re = kre[i]*fre[i] - kim[i]*fim[i];
gdouble im = kre[i]*fim[i] + kim[i]*fre[i];
kre[i] = re;
kim[i] = im;
}
gwy_data_field_2dfft_raw(kreal, kimag, kernel, NULL, GWY_TRANSFORM_DIRECTION_BACKWARD);
for (i = 0; i < extn; i++)
f[i] += k[i]*k[i];
}
gwy_data_field_area_copy(extfield, data_field, extx/2, exty/2, xres, yres, 0, 0);
d = data_field->data;
#ifdef _OPENMP
#pragma omp parallel for if (gwy_threads_are_enabled()) default(none) \
shared(n,d,gs) \
private(i)
#endif
for (i = 0; i < n; i++)
d[i] = sqrt(d[i]*n*9.0)/gs;
gwy_data_field_invalidate(data_field);
g_object_unref(extfield);
g_object_unref(kreal);
g_object_unref(kimag);
g_object_unref(freal);
g_object_unref(fimag);
g_object_unref(kernel);
g_object_unref(gauss);
}
/**
* gwy_data_field_area_filter_conservative:
* @data_field: A data field to apply the filter to.
* @size: Filtered area size.
* @col: Upper-left column coordinate.
* @row: Upper-left row coordinate.
* @width: Area width (number of columns).
* @height: Area height (number of rows).
*
* Filters a rectangular part of a data field with conservative denoise filter.
**/
void
gwy_data_field_area_filter_conservative(GwyDataField *data_field,
gint size,
gint col, gint row,
gint width, gint height)
{
gint xres, yres, i, j, ii, jj;
gdouble *data, *hlpdata;
GwyDataField *hlp_df;
if (!_gwy_data_field_check_area(data_field, col, row, width, height, TRUE))
return;
g_return_if_fail(size > 0);
xres = data_field->xres;
yres = data_field->yres;
if (size == 1)
return;
if (size > width || size > height) {
g_warning("Kernel size larger than field area size.");
return;
}
hlp_df = gwy_data_field_new(width, height, 1.0, 1.0, FALSE);
data = data_field->data;
hlpdata = hlp_df->data;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i,j,ii,jj) \
shared(data,hlpdata,xres,yres,width,height,col,row,size)
#endif
for (i = 0; i < height; i++) {
gint ifrom = MAX(0, i + row - (size-1)/2);
gint ito = MIN(yres-1, i + row + size/2);
for (j = 0; j < width; j++) {
gint jfrom = MAX(0, j + col - (size-1)/2);
gint jto = MIN(xres-1, j + col + size/2);
gdouble maxval = -G_MAXDOUBLE, minval = G_MAXDOUBLE;
for (ii = 0; ii <= ito - ifrom; ii++) {
gdouble *drow = data + (ifrom + ii)*xres + jfrom;
for (jj = 0; jj <= jto - jfrom; jj++) {
if (i + row == ii + ifrom && j + col == jj + jfrom)
continue;
if (drow[jj] < minval)
minval = drow[jj];
if (drow[jj] > maxval)
maxval = drow[jj];
}
}
hlpdata[i*width + j] = CLAMP(data[(i + row)*xres + j + col], minval, maxval);
}
}
/* fix bottom right corner for size == 2 */
if (size == 2)
hlpdata[height*width - 1] = data[(row + height-1)*xres + col + width-1];
gwy_data_field_area_copy(hlp_df, data_field, 0, 0, width, height, col, row);
g_object_unref(hlp_df);
gwy_data_field_invalidate(data_field);
}
/**
* gwy_data_field_filter_conservative:
* @data_field: A data field to apply the filter to.
* @size: Filtered area size.
*
* Filters a data field with conservative denoise filter.
**/
void
gwy_data_field_filter_conservative(GwyDataField *data_field,
gint size)
{
g_return_if_fail(GWY_IS_DATA_FIELD(data_field));
gwy_data_field_area_filter_conservative(data_field, size, 0, 0, data_field->xres, data_field->yres);
}
/* Return 8*number-of-neighbours + number-of-neighbour-segments.
* Segments must be separated by unset segments, so it is zero for all set
* neighbourhood. */
static guint
neighbour_segments(const gdouble *d, gint xres, gint k)
{
static const guint neightable[0x100] = {
0, 9, 9, 17, 9, 18, 17, 25, 9, 17, 18, 25, 18, 26, 26, 33,
9, 18, 18, 26, 17, 26, 25, 33, 18, 26, 27, 34, 26, 34, 34, 41,
9, 18, 18, 26, 18, 27, 26, 34, 17, 25, 26, 33, 26, 34, 34, 41,
18, 27, 27, 35, 26, 35, 34, 42, 26, 34, 35, 42, 34, 42, 42, 49,
9, 18, 18, 26, 18, 27, 26, 34, 18, 26, 27, 34, 27, 35, 35, 42,
18, 27, 27, 35, 26, 35, 34, 42, 27, 35, 36, 43, 35, 43, 43, 50,
17, 26, 26, 34, 26, 35, 34, 42, 25, 33, 34, 41, 34, 42, 42, 49,
26, 35, 35, 43, 34, 43, 42, 50, 34, 42, 43, 50, 42, 50, 50, 57,
9, 18, 18, 26, 18, 27, 26, 34, 18, 26, 27, 34, 27, 35, 35, 42,
17, 26, 26, 34, 25, 34, 33, 41, 26, 34, 35, 42, 34, 42, 42, 49,
18, 27, 27, 35, 27, 36, 35, 43, 26, 34, 35, 42, 35, 43, 43, 50,
26, 35, 35, 43, 34, 43, 42, 50, 34, 42, 43, 50, 42, 50, 50, 57,
17, 26, 26, 34, 26, 35, 34, 42, 26, 34, 35, 42, 35, 43, 43, 50,
25, 34, 34, 42, 33, 42, 41, 49, 34, 42, 43, 50, 42, 50, 50, 57,
25, 34, 34, 42, 34, 43, 42, 50, 33, 41, 42, 49, 42, 50, 50, 57,
33, 42, 42, 50, 41, 50, 49, 57, 41, 49, 50, 57, 49, 57, 57, 64,
};
guint b = 0;
if (d[k-xres-1] > 0.0)
b |= 1;
if (d[k-xres] > 0.0)
b |= 2;
if (d[k-xres+1] > 0.0)
b |= 4;
if (d[k-1] > 0.0)
b |= 8;
if (d[k+1] > 0.0)
b |= 16;
if (d[k+xres-1] > 0.0)
b |= 32;
if (d[k+xres] > 0.0)
b |= 64;
if (d[k+xres+1] > 0.0)
b |= 128;
return neightable[b];
}
static gboolean
pixel_thinnable(const gdouble *data, gint xres, gint k)
{
guint neighval;
neighval = neighbour_segments(data, xres, k);
/* One contiguous neighbour segment. */
if (neighval % 8 != 1)
return FALSE;
/* Two to six neighbours. */
neighval /= 8;
if (neighval < 2 || neighval > 6)
return FALSE;
/* We could pull the first parts into the table in neighbour_segments(), but I am currently too lazy. */
if (data[k + 1] > 0.0 && data[k - 1] > 0.0 && data[k + xres] > 0.0
&& neighbour_segments(data, xres, k+xres) % 8 == 1)
return FALSE;
if (data[k + 1] > 0.0 && data[k - xres] > 0.0 && data[k + xres] > 0.0
&& neighbour_segments(data, xres, k+1) % 8 == 1)
return FALSE;
return TRUE;
}
static gint
thinstep(GwyDataField *data_field,
GwyDataField *buffer)
{
gint i, j, ch;
gint xres = data_field->xres, yres = data_field->yres;
gdouble *data = data_field->data;
gdouble *bdata = buffer->data;
gwy_data_field_clear(buffer);
ch = 0;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
reduction(+:ch) \
private(i,j) \
shared(data,bdata,xres,yres)
#endif
for (i = 2; i < yres-2; i++) {
for (j = 2; j < xres-2; j++) {
gint k = i*xres + j;
if (data[k] > 0.0 && pixel_thinnable(data, xres, k)) {
ch++;
bdata[k] = 1.0;
}
}
}
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i,j) \
shared(data,bdata,xres,yres)
#endif
for (i = 2; i < yres-1; i++) {
for (j = 2; j < xres-1; j++) {
gint k = i*xres + j;
if (bdata[k] > 0.0)
data[k] = 0.0;
}
}
gwy_data_field_invalidate(data_field);
return ch;
}
/* XXX: Could be an alternative public function to gwy_data_field_thin(). It is more aggressive and loses some
* branches, but this can be a good thing. But for that it would be nice to implement it using a pixel queue so that
* we do not have to repeatedly scan the entire data field. */
static void
thin_data_field(GwyDataField *data_field)
{
GwyDataField *buffer;
gint xres, yres;
xres = data_field->xres;
yres = data_field->yres;
gwy_data_field_area_clear(data_field, 0, 0, xres, 1);
gwy_data_field_area_clear(data_field, 0, 0, 1, yres);
gwy_data_field_area_clear(data_field, xres-1, 0, 1, yres);
gwy_data_field_area_clear(data_field, 0, yres-1, xres, 1);
buffer = gwy_data_field_new_alike(data_field, FALSE);
while (thinstep(data_field, buffer))
;
g_object_unref(buffer);
gwy_data_field_invalidate(data_field);
}
/**
* kuwahara_block:
* @a: points to a 5x5 matrix (array of 25 doubles)
*
* Computes a new value of the center pixel according to the Kuwahara filter.
*
* Return: Filtered value.
*/
static gdouble
kuwahara_block(const gdouble *a)
{
static const gint r1[] = { 0, 1, 2, 5, 6, 7, 10, 11, 12 };
static const gint r2[] = { 2, 3, 4, 7, 8, 9, 12, 13, 14 };
static const gint r3[] = { 12, 13, 14, 17, 18, 19, 22, 23, 24 };
static const gint r4[] = { 10, 11, 12, 15, 16, 17, 20, 21, 22 };
gdouble mean1 = 0.0, mean2 = 0.0, mean3 = 0.0, mean4 = 0.0;
gdouble var1 = 0.0, var2 = 0.0, var3 = 0.0, var4 = 0.0;
gint i;
for (i = 0; i < 9; i++) {
mean1 += a[r1[i]]/9.0;
mean2 += a[r2[i]]/9.0;
mean3 += a[r3[i]]/9.0;
mean4 += a[r4[i]]/9.0;
var1 += a[r1[i]]*a[r1[i]]/9.0;
var2 += a[r2[i]]*a[r2[i]]/9.0;
var3 += a[r3[i]]*a[r3[i]]/9.0;
var4 += a[r4[i]]*a[r4[i]]/9.0;
}
var1 -= mean1 * mean1;
var2 -= mean2 * mean2;
var3 -= mean3 * mean3;
var4 -= mean4 * mean4;
if (var1 <= var2 && var1 <= var3 && var1 <= var4)
return mean1;
if (var2 <= var3 && var2 <= var4 && var2 <= var1)
return mean2;
if (var3 <= var4 && var3 <= var1 && var3 <= var2)
return mean3;
if (var4 <= var1 && var4 <= var2 && var4 <= var3)
return mean4;
return 0.0;
}
/**
* gwy_data_field_area_filter_kuwahara:
* @data_field: A data filed to apply Kuwahara filter to.
* @col: Upper-left column coordinate.
* @row: Upper-left row coordinate.
* @width: Area width (number of columns).
* @height: Area height (number of rows).
*
* Filters a rectangular part of a data field with a Kuwahara (edge-preserving smoothing) filter.
**/
void
gwy_data_field_area_filter_kuwahara(GwyDataField *data_field,
gint col, gint row,
gint width, gint height)
{
gint i, j, xres, yres;
gdouble *buffer, *d;
if (!_gwy_data_field_check_area(data_field, col, row, width, height, TRUE))
return;
buffer = g_new(gdouble, width*height);
xres = data_field->xres;
yres = data_field->yres;
d = data_field->data;
#ifdef _OPENMP
#pragma omp parallel if(gwy_threads_are_enabled()) default(none) \
private(i,j) \
shared(d,buffer,xres,yres,width,height,row,col)
#endif
{
gdouble kernel[25];
gint ifrom = gwy_omp_chunk_start(height);
gint ito = gwy_omp_chunk_end(height);
for (i = ifrom; i < ito; i++) {
for (j = 0; j < width; j++) {
gint x, y, ii, jj, ctr = 0;
for (y = -2; y <= 2; y++) {
ii = CLAMP(row + i + y, 0, yres-1);
for (x = -2; x <= 2; x++) {
jj = CLAMP(col + j + x, 0, xres-1);
kernel[ctr++] = d[ii*xres + jj];
}
}
buffer[i*width + j] = kuwahara_block(kernel);
}
}
}
for (i = 0; i < height; i++)
gwy_assign(d + xres*(row + i) + col, buffer + i*width, width);
g_free(buffer);
}
/**
* gwy_data_field_filter_kuwahara:
* @data_field: A data field to apply Kuwahara filter to.
*
* Filters a data field with Kuwahara filter.
**/
void
gwy_data_field_filter_kuwahara(GwyDataField *data_field)
{
g_return_if_fail(GWY_IS_DATA_FIELD(data_field));
gwy_data_field_area_filter_kuwahara(data_field, 0, 0, data_field->xres, data_field->yres);
}
/**
* gwy_data_field_shade:
* @data_field: A data field.
* @target_field: A data field to put the shade to. It will be resized to
* match @data_field.
* @theta: Shading angle (in radians, from north pole).
* @phi: Shade orientation in xy plane (in radians, counterclockwise).
*
* Shades a data field.
**/
void
gwy_data_field_shade(GwyDataField *data_field,
GwyDataField *target_field,
gdouble theta, gdouble phi)
{
gint i, j, xres, yres;
gdouble max, maxval, v, cphi, sphi;
gdouble *tdata;
g_return_if_fail(GWY_IS_DATA_FIELD(data_field));
g_return_if_fail(GWY_IS_DATA_FIELD(target_field));
xres = data_field->xres;
yres = data_field->yres;
gwy_data_field_resample(target_field, xres, yres, GWY_INTERPOLATION_NONE);
tdata = target_field->data;
max = -G_MAXDOUBLE;
cphi = cos(phi);
sphi = sin(phi);
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
reduction(max:max) \
private(i,j,v) \
shared(data_field,tdata,xres,yres,cphi,sphi)
#endif
for (i = 0; i < yres; i++) {
for (j = 0; j < xres; j++) {
v = _gwy_data_field_xder(data_field, j, i)*cphi + _gwy_data_field_yder(data_field, j, i)*sphi;
tdata[j + xres*i] = -v;
if (max < v)
max = v;
}
}
maxval = theta/max;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i) \
shared(tdata,xres,yres,max,maxval)
#endif
for (i = 0; i < xres*yres; i++)
tdata[i] = max - fabs(maxval - tdata[i]);
gwy_data_field_invalidate(target_field);
}
/**
* gwy_data_field_filter_harris:
* @x_gradient: Data field with pre-calculated horizontal derivative.
* @y_gradient: Data field with pre-calculated vertical derivative.
* @result: Data field for the result.
* @neighbourhood: Neighbourhood size.
* @alpha: Sensitivity paramter (the squared trace is multiplied by it).
*
* Applies Harris corner detection filter to a pair of gradient data fields.
*
* All passed data field must have the same size.
**/
void
gwy_data_field_filter_harris(GwyDataField *x_gradient,
GwyDataField *y_gradient,
GwyDataField *result,
gint neighbourhood,
gdouble alpha)
{
gdouble mult, sigma;
gint yres, xres, i, j;
GwyDataField *xx, *xy, *yy;
gdouble *xxdata, *xydata, *yydata, *xg, *yg, *r;
g_return_if_fail(GWY_IS_DATA_FIELD(x_gradient));
g_return_if_fail(GWY_IS_DATA_FIELD(y_gradient));
g_return_if_fail(GWY_IS_DATA_FIELD(result));
yres = result->yres;
xres = result->xres;
g_return_if_fail(x_gradient->xres == xres);
g_return_if_fail(x_gradient->yres == yres);
g_return_if_fail(y_gradient->xres == xres);
g_return_if_fail(y_gradient->yres == yres);
g_return_if_fail(neighbourhood > 0);
if (2*neighbourhood >= MIN(xres, yres)) {
gwy_data_field_clear(result);
return;
}
mult = (fabs(gwy_data_field_get_max(x_gradient) - gwy_data_field_get_min(x_gradient))
+ fabs(gwy_data_field_get_max(y_gradient) - gwy_data_field_get_min(y_gradient)));
mult = 1.0/(mult*mult);
xx = result;
xy = gwy_data_field_new_alike(result, TRUE);
yy = gwy_data_field_new_alike(result, TRUE);
xxdata = xx->data;
xydata = xy->data;
yydata = yy->data;
xg = x_gradient->data;
yg = y_gradient->data;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i,j) \
shared(xg,yg,xxdata,xydata,yydata,xres,yres,neighbourhood,mult)
#endif
for (i = neighbourhood; i < yres - neighbourhood; i++) {
for (j = neighbourhood; j < xres - neighbourhood; j++) {
gint k = i*xres + j;
gdouble vx = xg[k], vy = yg[k];
xxdata[k] = vx*vx*mult;
xydata[k] = vx*vy*mult;
yydata[k] = vy*vy*mult;
}
}
sigma = neighbourhood/5.0;
gwy_data_field_filter_gaussian(xx, sigma);
gwy_data_field_filter_gaussian(xy, sigma);
gwy_data_field_filter_gaussian(yy, sigma);
r = result->data;
#ifdef _OPENMP
#pragma omp parallel for if(gwy_threads_are_enabled()) default(none) \
private(i,j) \
shared(r,xxdata,xydata,yydata,xres,yres,neighbourhood,alpha)
#endif
for (i = neighbourhood; i < yres - neighbourhood; i++) {
for (j = neighbourhood; j < xres - neighbourhood; j++) {
gint k = i*xres + j;
gdouble pxx = xxdata[k], pxy = xydata[k], pyy = yydata[k];
gdouble det = pxx*pyy - pxy*pxy, trace = pxx + pyy;
r[k] = det - alpha*trace*trace;
}
}
gwy_data_field_area_clear(result, 0, 0, xres, neighbourhood);
gwy_data_field_area_clear(result, 0, neighbourhood, neighbourhood, yres-2*neighbourhood);
gwy_data_field_area_clear(result, xres-neighbourhood, neighbourhood, neighbourhood, yres-2*neighbourhood);
gwy_data_field_area_clear(result, 0, yres-neighbourhood, xres, neighbourhood);
/* xx = result */
g_object_unref(xy);
g_object_unref(yy);
}
/************************** Documentation ****************************/
/**
* SECTION:filters
* @title: filters
* @short_description: Convolution and other 2D data filters
*
* Filters are point-wise operations, such as thresholding, or generally local operations producing a value based on
* the data in the vicinity of each point: gradients, step detectors and convolutions. Some simple common point-wise
* operations, e.g. value inversion, are also found in base #GwyDataField methods.
**/
/* vim: set cin columns=120 tw=118 et ts=4 sw=4 cino=>1s,e0,n0,f0,{0,}0,^0,\:1s,=0,g1s,h0,t0,+1s,c3,(0,u0 : */
|