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
|
/*********************************************************************
label -- Work on labeled (integer valued) datasets.
This is part of GNU Astronomy Utilities (Gnuastro) package.
Original author:
Mohammad Akhlaghi <mohammad@akhlaghi.org>
Contributing author(s):
Copyright (C) 2018-2025 Free Software Foundation, Inc.
Gnuastro 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 3 of the License, or (at your
option) any later version.
Gnuastro 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 Gnuastro. If not, see <http://www.gnu.org/licenses/>.
**********************************************************************/
#include <config.h>
#include <stdio.h>
#include <errno.h>
#include <error.h>
#include <string.h>
#include <stdlib.h>
#include <gnuastro/list.h>
#include <gnuastro/qsort.h>
#include <gnuastro/label.h>
#include <gnuastro/threads.h>
#include <gnuastro/pointer.h>
#include <gnuastro/dimension.h>
#include <gnuastro/arithmetic.h>
#include <gnuastro/statistics.h>
#include <gnuastro-internal/checkset.h>
/****************************************************************
***************** Checks and preparations **************
****************************************************************/
static void
label_check_type(gal_data_t *in, uint8_t needed_type, char *variable,
const char *func)
{
if(in->type!=needed_type)
error(EXIT_FAILURE, 0, "%s: the '%s' dataset has '%s' type, but it "
"must have a '%s' type.\n\n"
"You can use 'gal_data_copy_to_new_type' or "
"'gal_data_copy_to_new_type_free' to convert your input dataset "
"to this type before calling this function", func, variable,
gal_type_name(in->type, 1), gal_type_name(needed_type, 1));
}
/****************************************************************
***************** Indexs ********************
****************************************************************/
/* Put the indexs of each labeled region into an array of 'gal_data_t's
(where each element is a dataset containing the respective label's
indexs). */
gal_data_t *
gal_label_indexs(gal_data_t *labels, size_t numlabs, size_t minmapsize,
int quietmmap)
{
size_t i, *areas;
int32_t *a, *l, *lf;
gal_data_t *max, *labindexs;
/* Sanity check. */
label_check_type(labels, GAL_TYPE_INT32, "labels", __func__);
/* If the user hasn't given the number of labels, find it (maximum
label). */
if(numlabs==0)
{
max=gal_statistics_maximum(labels);
numlabs=*((int32_t *)(max->array));
gal_data_free(max);
}
labindexs=gal_data_array_calloc(numlabs+1);
/* Find the area in each detected object (to see how much space we need
to allocate). If blank values are present, an extra check is
necessary, so to get faster results when there aren't any blank
values, we'll also do a check. */
areas=gal_pointer_allocate(GAL_TYPE_SIZE_T, numlabs+1, 1, __func__,
"areas");
lf=(l=labels->array)+labels->size;
do
if(*l>0) /* Only labeled regions: *l==0 (undetected), *l<0 (blank). */
++areas[*l];
while(++l<lf);
/* For a check.
for(i=0;i<numlabs+1;++i)
printf("detection %zu: %zu\n", i, areas[i]);
exit(0);
*/
/* Allocate/Initialize the dataset containing the indexs of each
object. We don't want the labels of the non-detected regions
(areas[0]). So we'll set that to zero. */
for(i=1;i<numlabs+1;++i)
gal_data_initialize(&labindexs[i], NULL, GAL_TYPE_SIZE_T, 1,
&areas[i], NULL, 0, minmapsize, quietmmap,
NULL, NULL, NULL);
/* Put the indexs into each dataset. We will use the areas array again,
but this time, use it as a counter. */
memset(areas, 0, (numlabs+1)*sizeof *areas);
lf=(a=l=labels->array)+labels->size;
do
if(*l>0) /* No undetected regions (*l==0), or blank (<0). */
((size_t *)(labindexs[*l].array))[ areas[*l]++ ] = l-a;
while(++l<lf);
/* Clean up and return. */
free(areas);
return labindexs;
}
/****************************************************************
***************** Over segmentation ********************
****************************************************************/
/* Over-segment the region specified by its indexs into peaks and their
respective regions (clumps). This is very similar to the immersion
method of Vincent & Soille(1991), but here, we will not separate the
image into layers, instead, we will work based on the ordered flux
values. If a certain pixel (at a certain level) has no neighbors, it is
a local maximum and will be assigned a new label. If it has a labeled
neighbor, it will take that label and if there is more than one
neighboring labeled region that pixel will be a 'river' pixel.
DON'T FORGET: SET THE FLAGS FOR CONV EQUAL TO INPUT IN SEGMENT.
*/
size_t
gal_label_watershed(gal_data_t *values, gal_data_t *indexs,
gal_data_t *labels, size_t *topinds, int min0_max1)
{
size_t ndim=values->ndim;
int hasblank;
float *arr=values->array;
gal_list_sizet_t *Q=NULL, *cleanup=NULL;
size_t *a, *af, ind, *dsize=values->dsize;
size_t *dinc=gal_dimension_increment(ndim, dsize);
int32_t n1, nlab, rlab, curlab=1, *labs=labels->array;
/* Sanity checks. */
label_check_type(values, GAL_TYPE_FLOAT32, "values", __func__);
label_check_type(indexs, GAL_TYPE_SIZE_T, "indexs", __func__);
label_check_type(labels, GAL_TYPE_INT32, "labels", __func__);
if( gal_dimension_is_different(values, labels) )
error(EXIT_FAILURE, 0, "%s: the 'values' and 'labels' arguments must "
"have the same size", __func__);
if(indexs->ndim!=1)
error(EXIT_FAILURE, 0, "%s: 'indexs' has to be a 1D array, but it is "
"%zuD", __func__, indexs->ndim);
/* See if there are blank values in the input dataset. */
hasblank=gal_blank_present(values, 0);
/*********************************************
For checks and debugging:*
gal_data_t *crop;
size_t extcount=1;
int32_t *cr, *crf;
size_t checkdsize[2]={10,10};
size_t checkstart[2]={50,145};
char *filename="clumpbuild.fits";
size_t checkstartind=gal_dimension_coord_to_index(2, dsize, checkstart);
gal_data_t *tile=gal_data_alloc(gal_data_ptr_increment(arr, checkstartind,
values->type),
GAL_TYPE_INVALID, 2, checkdsize,
NULL, 0, 0, NULL, NULL, NULL);
tile->block=values;
gal_checkset_writable_remove(filename, NULL, 0, 0);
crop=gal_data_copy(tile);
gal_fits_img_write(crop, filename, NULL, PROGRAM_NAME);
gal_data_free(crop);
printf("blank: %u\nriver: %u\ntmpcheck: %u\ninit: %u\n",
(int32_t)GAL_BLANK_INT32, (int32_t)GAL_LABEL_RIVER,
(int32_t)GAL_LABEL_TMPCHECK, (int32_t)GAL_LABEL_INIT);
tile->array=gal_tile_block_relative_to_other(tile, labels);
tile->block=labels;
**********************************************/
/* If the size of the indexs is zero, then this function is pointless. */
if(indexs->size==0) return 0;
/* If the indexs aren't already sorted (by the value they correspond to),
sort them given indexs based on their flux ('gal_qsort_index_arr' is
defined as static in 'gnuastro/qsort.h'). */
if( !( (indexs->flag & GAL_DATA_FLAG_SORT_CH)
&& ( indexs->flag
& (GAL_DATA_FLAG_SORTED_I
| GAL_DATA_FLAG_SORTED_D) ) ) )
{
gal_qsort_index_single=values->array;
qsort(indexs->array, indexs->size, sizeof(size_t),
( min0_max1
? gal_qsort_index_single_float32_d
: gal_qsort_index_single_float32_i) );
}
/* Initialize the region we want to over-segment. */
af=(a=indexs->array)+indexs->size;
do labs[*a]=GAL_LABEL_INIT; while(++a<af);
/* Go over all the given indexs and pull out the clumps. */
af=(a=indexs->array)+indexs->size;
do
/* When regions of a constant flux or masked regions exist, some later
indexs (although they have same flux) will be filled before hand. If
they are done, there is no need to do them again. */
if(labs[*a]==GAL_LABEL_INIT)
{
/* It might happen where one or multiple regions of the pixels
under study have the same flux. So two equal valued pixels of
two separate (but equal flux) regions will fall immediately
after each other in the sorted list of indexs and we have to
account for this.
Therefore, if we see that the next pixel in the index list has
the same flux as this one, it does not guarantee that it should
be given the same label. Similar to the breadth first search
algorithm for finding connected components, we will search all
the neighbors and the neighbours of those neighbours that have
the same flux of this pixel to see if they touch any label or
not and to finally give them all the same label. */
if( (a+1)<af && arr[*a]==arr[*(a+1)] )
{
/* Label of first neighbor found. */
n1=0;
/* A small sanity check. */
if(Q!=NULL || cleanup!=NULL)
error(EXIT_FAILURE, 0, "%s: a bug! Please contact us at %s so "
"we can fix this problem. 'Q' and 'cleanup' should be "
"NULL but while checking the equal flux regions they "
"aren't", __func__, PACKAGE_BUGREPORT);
/* Add this pixel to a queue. */
gal_list_sizet_add(&Q, *a);
gal_list_sizet_add(&cleanup, *a);
labs[*a] = GAL_LABEL_TMPCHECK;
/* Find all the pixels that have the same flux and are
connected. */
while(Q!=NULL)
{
/* Pop an element from the queue. */
ind=gal_list_sizet_pop(&Q);
/* Look at the neighbors and see if we already have a
label. */
GAL_DIMENSION_NEIGHBOR_OP(ind, ndim, dsize, ndim, dinc,
{
/* If it is already decided to be a river, then stop
looking at the neighbors. */
if(n1!=GAL_LABEL_RIVER)
{
/* For easy reading. */
nlab=labs[ nind ];
/* This neighbor's label isn't zero. */
if(nlab)
{
/* If this neighbor has not been labeled yet
and has an equal flux, add it to the queue
to expand the studied region. */
if( nlab==GAL_LABEL_INIT && arr[nind]==arr[*a] )
{
labs[nind]=GAL_LABEL_TMPCHECK;
gal_list_sizet_add(&Q, nind);
gal_list_sizet_add(&cleanup, nind);
}
else
n1=( nlab>0
/* If this neighbor has a positive
nlab, it belongs to another object,
so if 'n1' has not been set for the
whole region (n1==0), put 'nlab'
into 'n1'. If 'n1' has been set and
is different from 'nlab' then this
whole equal flux region should be a
wide river because it is connecting
two connected regions. */
? ( n1
? (n1==nlab ? n1 : GAL_LABEL_RIVER)
: nlab )
/* If the data has blank pixels, see if
the neighbor is blank. If so, set
the label to a river. Checking for
the presence of blank values in the
dataset can be done outside this
loop (or even outside this function
if flags are set). So to help the
compiler optimize the program, we'll
first use the pre-checked value. */
: ( ( hasblank && isnan(arr[nind]) )
? GAL_LABEL_RIVER
: n1 ) );
}
/* If this neigbour has a label of zero, then we
are on the edge of the indexed region (the
neighbor is not in the initial list of pixels
to segment). When over-segmenting the noise and
the detections, 'label' is zero for the parts
of the image that we are not interested in
here. */
else labs[*a]=GAL_LABEL_RIVER;
}
} );
}
/* Set the label that is to be given to this equal flux
region. If 'n1' was set to any value, then that label should
be used for the whole region. Otherwise, this is a new
label, see the case for a non-flat region. */
if(n1) rlab = n1;
else
{
rlab = curlab++;
if( topinds ) /* This is a local maximum of */
topinds[rlab]=*a; /* this region, save its index. */
}
/* Give the same label to the whole connected equal flux
region, except those that might have been on the side of
the image and were a river pixel. */
while(cleanup!=NULL)
{
ind=gal_list_sizet_pop(&cleanup);
/* If it was on the sides of the image, it has been
changed to a river pixel. */
if( labs[ ind ]==GAL_LABEL_TMPCHECK ) labs[ ind ]=rlab;
}
}
/* The flux of this pixel is not the same as the next sorted
flux, so simply find the label for this object. */
else
{
/* 'n1' is the label of the first labeled neighbor found, so
we'll initialize it to zero. */
n1=0;
/* Go over all the fully connected neighbors of this pixel and
see if all the neighbors (with maximum connectivity: the
number of dimensions) that have a non-macro value belong to
one label or not. If the pixel is neighbored by more than
one label, set it as a river pixel. Also if it is touching a
zero valued pixel (which does not belong to this object),
set it as a river pixel. */
GAL_DIMENSION_NEIGHBOR_OP(*a, ndim, dsize, ndim, dinc,
{
/* When 'n1' has already been set as a river, there is no
point in looking at the other neighbors. */
if(n1!=GAL_LABEL_RIVER)
{
/* For easy reading. */
nlab=labs[ nind ];
/* If this neighbor is on a non-processing label, then
set the first neighbor accordingly. Note that we
also want the zero valued neighbors (detections if
working on sky, and sky if working on detection):
we want rivers between the two domains. */
n1 = ( nlab
/* nlab is non-zero. */
? ( nlab>0
/* Neighbor has a meaningful label, so
check with any previously found labeled
neighbors. */
? ( n1
? ( nlab==n1 ? n1 : GAL_LABEL_RIVER )
: nlab )
/* If the data has blank pixels, see if the
neighbor is blank. If so, set the label
to a river. Checking for the presence of
blank values in the dataset can be done
outside this loop (or even outside this
function if flags are set). So to help
the compiler optimize the program, we'll
first use the pre-checked value. */
: ( ( hasblank && isnan(arr[nind]) )
? GAL_LABEL_RIVER
: n1 ) )
/* 'nlab==0' (the neighbor lies in the other
domain (sky or detections). To avoid the
different domains touching, this pixel
should be a river. */
: GAL_LABEL_RIVER );
}
});
/* Either assign a new label to this pixel, or give it the one
of its neighbors. If n1 equals zero, then this is a new
peak, and a new label should be created. But if n1!=0, it
is either a river pixel (has more than one labeled neighbor
and has been set to 'GAL_LABEL_RIVER' before) or all its
neighbors have the same label. In both such cases, rlab
should be set to n1. */
if(n1) rlab = n1;
else
{
rlab = curlab++;
if( topinds )
topinds[ rlab ]=*a;
}
/* Put the found label in the pixel. */
labs[ *a ] = rlab;
}
/*********************************************
For checks and debugging:
if( *a / dsize[1] >= checkstart[0]
&& *a / dsize[1] < checkstart[0] + checkdsize[0]
&& *a % dsize[1] >= checkstart[1]
&& *a % dsize[1] < checkstart[1] + checkdsize[1] )
{
printf("%zu (%zu: %zu, %zu): %u\n", ++extcount, *a,
(*a%dsize[1])-checkstart[1], (*a/dsize[1])-checkstart[0],
labs[*a]);
crop=gal_data_copy(tile);
crf=(cr=crop->array)+crop->size;
do if(*cr==GAL_LABEL_RIVER) *cr=0; while(++cr<crf);
gal_fits_img_write(crop, filename, NULL, PROGRAM_NAME);
gal_data_free(crop);
}
**********************************************/
}
while(++a<af);
/*********************************************
For checks and debugging:
tile->array=NULL;
gal_data_free(tile);
printf("Total number of clumps: %u\n", curlab-1);
**********************************************/
/* Clean up. */
free(dinc);
/* Return the total number of clumps. */
return curlab-1;
}
/**********************************************************************/
/************* Clump significance *************/
/**********************************************************************/
static int
label_clump_significance_sanity(gal_data_t *values, gal_data_t *std,
gal_data_t *label, gal_data_t *indexs,
struct gal_tile_two_layer_params *tl,
gal_data_t *sig, const char *func)
{
size_t *a, *af;
float first=NAN, second=NAN, *f=values->array;
/* Type of values. */
if( values->type!=GAL_TYPE_FLOAT32 )
error(EXIT_FAILURE, 0, "%s: the values dataset must have a 'float' "
"type, but it has a '%s' type", func,
gal_type_name(values->type, 1));
/* Type of standard deviation. */
if( std->type!=GAL_TYPE_FLOAT32 )
error(EXIT_FAILURE, 0, "%s: the standard deviation dataset must have a "
"'float' ('float32') type, but it has a '%s' type", func,
gal_type_name(std->type, 1));
/* Type of labels image. */
if( label->type!=GAL_TYPE_INT32 )
error(EXIT_FAILURE, 0, "%s: the labels dataset must have an 'int32' "
"type, but it has a '%s' type", func,
gal_type_name(label->type, 1));
/* Dimentionality of the values dataset. */
if( values->ndim>3 )
error(EXIT_FAILURE, 0, "%s: currently only supports 1, 2 or 3 "
"dimensional datasets, but a %zu-dimensional dataset is given",
func, values->ndim);
/* Type of indexs image. */
if( indexs->type!=GAL_TYPE_SIZE_T )
error(EXIT_FAILURE, 0, "%s: the indexs dataset must have a 'size_t' "
"type, but it has a '%s' type", func,
gal_type_name(label->type, 1));
/* Dimensionality of indexs (must be 1D). */
if( indexs->ndim!=1 )
error(EXIT_FAILURE, 0, "%s: the indexs dataset must be a 1D dataset, "
"but it has %zu dimensions", func, indexs->ndim);
/* Similar sizes between values and standard deviation. */
if( gal_dimension_is_different(values, label) )
error(EXIT_FAILURE, 0, "%s: the values and label arrays don't have the "
"same size.", func);
/* Size of the standard deviation. */
if( !( std->size==1
|| std->size==values->size
|| (tl && std->size==tl->tottiles) ) )
error(EXIT_FAILURE, 0, "%s: the standard deviation dataset has %zu "
"elements. But it can only have one of these sizes: 1) a "
"single value (used for the whole dataset), 2) The size of "
"the values dataset (%zu elements, one value for each "
"element), 3) The size of the number of tiles in the input "
"tessellation (when a tessellation is given)",
func, std->size, values->size);
/* If the 'array' and 'dsize' elements of 'sig' have already been set. */
if(sig->array)
error(EXIT_FAILURE, 0, "%s: the dataset that will contain the "
"significance values must have NULL pointers for its 'array' "
"and 'dsize' pointers (they will be allocated here)", func);
/* See if the clumps are to be built starting from local maxima or local
minima. */
af=(a=indexs->array)+indexs->size;
do
/* A label may have NAN values. */
if( !isnan(f[*a]) )
{
if( isnan(first) )
first=f[*a];
else
{
if( isnan(second) )
{
/* Note that the elements may have equal values, so for
'second', we want the first non-blank AND different
value. */
if( f[*a]!=first )
second=f[*a];
}
else
break;
}
}
while(++a<af);
/* Note that if all the values are blank or there is only one value
covered by all the indexs, then both (or one) of 'first' or 'second'
will be NAN. In either case, the significance measure is not going to
be meaningful if we assume the clumps start from the maxima or
minima. So we won't check if they are NaN or not. */
return first>second ? 1 : 0;
}
/* In this function we want to find the general information for each clump
in an over-segmented labeled array. The signal in each clump is the
average signal inside it subtracted by the average signal in the river
pixels around it. So this function will go over all the pixels in the
object (already found in deblendclumps()) and add them appropriately.
The output is an array of size cltprm->numinitial*INFO_NCOLS. as listed
below. */
enum infocols
{
INFO_STD, /* Standard deviation. */
INFO_INAREA, /* Tatal area within clump. */
INFO_RIVAREA, /* Tatal area within rivers around clump. */
INFO_PEAK_RIVER, /* Peak (min or max) river value around a clump. */
INFO_PEAK_CENTER, /* Peak (min or max) clump value. */
INFO_NCOLS, /* Total number of columns in the 'info' table. */
};
static void
label_clump_significance_raw(gal_data_t *values_d, gal_data_t *std_d,
gal_data_t *label_d, gal_data_t *indexs,
struct gal_tile_two_layer_params *tl,
double *info)
{
size_t ndim=values_d->ndim, *dsize=values_d->dsize;
double *row;
size_t i, *a, *af, ii, coord[3];
size_t nngb=gal_dimension_num_neighbors(ndim);
int32_t nlab, *ngblabs, *label=label_d->array;
float *values=values_d->array, *std=std_d->array;
size_t *dinc=gal_dimension_increment(ndim, dsize);
/* Allocate the array to keep the neighbor labels of river pixels. */
ngblabs=gal_pointer_allocate(GAL_TYPE_INT32, nngb, 0, __func__, "ngblabs");
/* Go over all the pixels in this region. */
af=(a=indexs->array)+indexs->size;
do
if( !isnan(values[ *a ]) )
{
/* This pixel belongs to a clump. */
if( label[ *a ]>0 )
{
/* For easy reading. */
row = &info [ label[*a] * INFO_NCOLS ];
/* Add this pixel to this clump's area. */
++row[ INFO_INAREA ];
/* In the loop 'INFO_INAREA' is just the pixel counter of this
clump. The pixels are sorted by flux (decreasing for
positive clumps and increasing for negative). So the second
extremum value is just the second pixel of the clump. */
if( row[ INFO_INAREA ]==1.0f )
row[ INFO_PEAK_CENTER ] = values[*a];
}
/* This pixel belongs to a river (has a value of zero and isn't
blank). */
else
{
/* We are on a river pixel. So the value of this pixel has to
be added to any of the clumps in touches. But since it might
touch a labeled region more than once, we use 'ngblabs' to
keep track of which label we have already added its value
to. 'ii' is the number of different labels this river pixel
has already been considered for. 'ngblabs' will keep the list
labels. */
ii=0;
memset(ngblabs, 0, nngb*sizeof *ngblabs);
/* Look into the 8-connected neighbors (recall that a
connectivity of 'ndim' means all pixels touching it (even on
one vertice). */
GAL_DIMENSION_NEIGHBOR_OP(*a, ndim, dsize, ndim, dinc, {
/* This neighbor's label. */
nlab=label[ nind ];
/* We only want those neighbors that are not rivers (>0) or
any of the flag values. */
if(nlab>0)
{
/* Go over all already checked labels and make sure
this clump hasn't already been considered. */
for(i=0;i<ii;++i) if(ngblabs[i]==nlab) break;
/* This neighbor clump hasn't been considered yet: */
if(i==ii)
{
ngblabs[ii++] = nlab;
row = &info[ nlab * INFO_NCOLS ];
++row[INFO_RIVAREA];
if( row[INFO_RIVAREA]==1.0f )
{
/* Get the maximum river value. */
row[INFO_PEAK_RIVER] = values[*a];
/* Get the standard deviation. */
if(std_d->size==1 || std_d->size==values_d->size)
row[INFO_STD]=std_d->size==1?std[0]:std[*a];
else
{
gal_dimension_index_to_coord(*a, ndim, dsize,
coord);
row[INFO_STD]=
std[gal_tile_full_id_from_coord(tl,coord)];
}
}
}
}
} );
}
}
while(++a<af);
/* Clean up. */
free(dinc);
free(ngblabs);
}
/* Make an S/N table for the clumps in a given region. */
void
gal_label_clump_significance(gal_data_t *values, gal_data_t *std,
gal_data_t *label, gal_data_t *indexs,
struct gal_tile_two_layer_params *tl,
size_t numclumps, size_t minarea, int variance,
int keepsmall, gal_data_t *sig,
gal_data_t *sigind)
{
double *info;
int max1_min0;
float *sigarr;
double C, R, S, *row;
int32_t *indarr=NULL;
size_t i, ind, counter=0;
size_t tablen=numclumps+1;
/* If there were no initial clumps, then ignore this function. */
if(numclumps==0) { sig->size=0; return; }
/* Basic sanity checks. */
max1_min0=label_clump_significance_sanity(values, std, label, indexs,
tl, sig, __func__);
/* Allocate the arrays to keep the final significance measure (and
possibly the indexs). */
sig->ndim = 1; /* Depends on 'cltprm->sn' */
sig->type = GAL_TYPE_FLOAT32;
if(sig->dsize==NULL)
sig->dsize = gal_pointer_allocate(GAL_TYPE_SIZE_T, 1, 0, __func__,
"sig->dsize");
sig->array = gal_pointer_allocate(sig->type, tablen, 0, __func__,
"sig->array");
sig->size = sig->dsize[0] = tablen; /* MUST BE AFTER dsize. */
info=gal_pointer_allocate(GAL_TYPE_FLOAT64, tablen*INFO_NCOLS, 1,
__func__, "info");
if( sigind )
{
sigind->ndim = 1;
sigind->type = GAL_TYPE_INT32;
sigind->dsize = gal_pointer_allocate(GAL_TYPE_SIZE_T, 1, 0, __func__,
"sigind->dsize");
sigind->size = sigind->dsize[0] = tablen;/* After dsize. */
sigind->array = gal_pointer_allocate(sigind->type, tablen, 0, __func__,
"sigind->array");
}
/* First, get the raw information necessary for making the S/N table. */
label_clump_significance_raw(values, std, label, indexs, tl, info);
/* Calculate the signficance value for successful clumps. */
sigarr=sig->array;
if(keepsmall) sigarr[0]=NAN;
if(sigind) indarr=sigind->array;
for(i=1;i<tablen;++i)
{
/* For readability. */
row = &info[ i * INFO_NCOLS ];
/* If we have a sufficient area and any rivers were actually found
for this clump, then do the measurement. */
if( row[ INFO_INAREA ]>minarea && row[ INFO_RIVAREA ])
{
/* Set the index to write the values. If 'keepsmall' is not
called, we don't care about the IDs of the clumps anymore, so
store the signal-to-noise ratios contiguously. Note that
counter will always be smaller and equal to i. */
ind = keepsmall ? i : counter++;
/* For easy reading. */
R = row[ INFO_PEAK_RIVER ];
C = row[ INFO_PEAK_CENTER ];
S = variance ? sqrt(row[ INFO_STD ]) : row[ INFO_STD ];
/* NEGATIVE VALUES: Rivers are also defined on the edges of the
image and on pixels touching blank pixels. In a strong
gradient, such sitations can cause the river to be
larger/smaller than the minimum/maximum within the clump. This
can only happen in very strong gradients, so for now, I think
it is safe to ignore that clump (its negative value will
automatically discard it). Later, if we find a problem with
this, we'll have to figure out a better solution. */
if(sigind) indarr[ind]=i;
sigarr[ind] = ( max1_min0 ? (C-R) : (R-C) ) / S;
}
else
{
/* Only over detections, we should put a NaN when the S/N isn't
calculated. */
if(keepsmall)
{
sigarr[i]=NAN;
if(sigind) indarr[i]=i;
}
}
}
/* If we don't want to keep the small clumps, the size of the S/N table
has to be corrected. */
if(keepsmall==0)
{
sig->dsize[0] = sig->size = counter;
if(sigind) sigind->dsize[0] = sigind->size = counter;
}
/* Clean up. */
free(info);
}
/**********************************************************************/
/************* Growing labels *************/
/**********************************************************************/
/* Grow the given labels without creating new ones. */
void
gal_label_grow_indexs(gal_data_t *labels, gal_data_t *indexs, int withrivers,
int connectivity)
{
int searchngb;
size_t *iarray=indexs->array;
int32_t n1, nlab, *olabel=labels->array;
size_t *s, *sf, thisround, ninds=indexs->size;
size_t *dinc=gal_dimension_increment(labels->ndim, labels->dsize);
/* Some basic sanity checks: */
label_check_type(indexs, GAL_TYPE_SIZE_T, "indexs", __func__);
label_check_type(labels, GAL_TYPE_INT32, "labels", __func__);
if(indexs->ndim!=1)
error(EXIT_FAILURE, 0, "%s: 'indexs' has to be a 1D array, but it is "
"%zuD", __func__, indexs->ndim);
/* The basic idea is this: after growing, not all the blank pixels are
necessarily filled, for example the pixels might belong to two regions
above the growth threshold. So the pixels in between them (which are
below the threshold will not ever be able to get a label, even if they
are in the indexs list). Therefore, the safest way we can terminate
the loop of growing the objects is to stop it when the number of
pixels left to fill in this round (thisround) equals the number of
blanks.
To start the loop, we set 'thisround' to one more than the number of
indexed pixels. Note that it will be corrected immediately after the
loop has started, it is just important to pass the 'while'. */
thisround=ninds+1;
while( thisround > ninds )
{
/* 'thisround' will keep the number of pixels to be inspected in this
round. 'ninds' will count the number of pixels left without a
label by the end of this round. Since 'ninds' comes from the
previous loop (or outside, for the first round) it has to be saved
in 'thisround' to begin counting a fresh. */
thisround=ninds;
ninds=0;
/* Go over all the available indexs. NOTE: while the 'indexs->array'
pointer remains unchanged, 'indexs->size' can/will change (get
smaller) in every loop. */
sf = (s=indexs->array) + indexs->size;
do
{
/* We'll begin by assuming the nearest neighbor of this pixel
has no label (has a value of 0). */
n1=0;
/* Check the neighbors of this pixel. Note that since this
macro has multiple loops within it, we can't use
break. We'll use the 'searchngb' variable instead. */
searchngb=1;
GAL_DIMENSION_NEIGHBOR_OP(*s, labels->ndim, labels->dsize,
connectivity, dinc,
{
if(searchngb)
{
/* For easy reading. */
nlab = olabel[nind];
/* This neighbor's label is meaningful. */
if(nlab>0) /* This is a real label. */
{
if(n1) /* A prev. ngb label has been found. */
{
if( n1 != nlab ) /* Different label from */
{ /* prevously found ngb for this pixel. */
n1=GAL_LABEL_RIVER;
searchngb=0;
}
}
else
{ /* This is the first labeld neighbor found. */
n1=nlab;
/* If we want to completely fill in the region
('withrivers==0'), then there is no point in
looking in other neighbors, the first
neighbor we find, is the one we'll use. */
if(!withrivers) searchngb=0;
}
}
}
} );
/* The loop over neighbors (above) finishes with three
possibilities:
n1==0 --> No labeled neighbor was found.
n1==GAL_LABEL_RIVER --> Connecting two labeled regions.
n1>0 --> Only has one neighboring label.
The first one means that no neighbors were found and this
pixel should be kept for the next loop (we'll be growing the
objects pixel-layer by pixel-layer). In the other two cases,
we just need to write in the value of 'n1'. */
if(n1)
{
/* Set the label. */
olabel[*s]=n1;
/* If this pixel is a river (can only happen when
'withrivers' is zero), keep it in the loop, because we
want the 'indexs' dataset to contain all non-positive
(non-labeled) pixels, including rivers. */
if(n1==GAL_LABEL_RIVER)
iarray[ ninds++ ] = *s;
}
else
iarray[ ninds++ ] = *s;
/* Correct the size of the 'indexs' dataset. */
indexs->size = indexs->dsize[0] = ninds;
}
while(++s<sf);
}
/* Clean up. */
free(dinc);
}
/**********************************************************************/
/************* Measurements on labels *************/
/**********************************************************************/
struct label_measure_p
{
int operator;
gal_data_t *out;
gal_data_t *labs;
gal_data_t *vals;
gal_data_t *tiles;
int32_t *lab_from_tile;
size_t *lab_to_tile;
};
static void
label_measure_area(struct label_measure_p *p, gal_data_t *tile,
int32_t lab)
{
size_t increment=0, num_increment=1;
size_t start_end_inc[2]={0,tile->block->size-1}; /* inclusive */
/* Input/output specific types. */
int32_t *l, *lf, *lstart;
uint32_t *o, *of, *ostart;
/* Operational variables. */
size_t area=0;
/* Parse over the pixels of this tile to find the output value. */
lstart=gal_tile_start_end_ind_inclusive(tile, tile->block,
start_end_inc);
while( start_end_inc[0] + increment <= start_end_inc[1] ) /* slow-dim */
{
/* Parse over the fast dimension. */
lf = ( l = lstart + increment ) + tile->dsize[tile->ndim-1];
do if(*l++==lab) ++area; while(l<lf);
/* Increment to the next pointer. */
increment += gal_tile_block_increment(p->labs, tile->dsize,
num_increment++, NULL);
}
/* Write the value into the output. */
increment=0;
num_increment=1;
lstart=gal_tile_start_end_ind_inclusive(tile, tile->block,
start_end_inc);
ostart=gal_tile_start_end_ind_inclusive(tile, p->out, start_end_inc);
while( start_end_inc[0] + increment <= start_end_inc[1] )
{
l = lstart + increment;
of = ( o = ostart + increment ) + tile->dsize[tile->ndim-1];
do if(*l++==lab) *o=area; while(++o<of);
increment += gal_tile_block_increment(p->labs, tile->dsize,
num_increment++, NULL);
}
}
/* Used to check for blanks and to set the operator. It is very important
that the label be checked first (so it is also incremented at the same
time). */
#define LABEL_MEASURE_MINMAX_OP(BCHECK, OP) { \
do if(*l++==lab && BCHECK && *v OP *ext) *ext=*v; while(++v<vf); \
}
/* Parsing function for minimum or maximum. */
#define LABEL_MEASURE_MINMAX(VT) { \
VT *ext=(VT *)(&outputvalue); \
VT b, *vstart, *v=p->vals->array, *vf=v+p->vals->size; \
\
/* Set the blank value and initialize the extremum. */ \
gal_blank_write(&b, p->vals->type); \
if(p->operator==GAL_ARITHMETIC_OP_LABEL_MINIMUM) \
gal_type_max(p->vals->type, ext); \
else gal_type_min(p->vals->type, ext); \
\
/* Set the sizes for the slow dimension. */ \
vstart=gal_tile_start_end_ind_inclusive(tile, p->vals, start_end_inc); \
while( start_end_inc[0] + increment <= start_end_inc[1] ) \
{ \
/* Set the parsing pointers for the fast dimension. */ \
l = lstart + increment; \
vf = ( v = vstart + increment ) + tile->dsize[tile->ndim-1]; \
\
if(b==b) /* On an integer type: the blank equals itself. */ \
{ \
if(p->operator==GAL_ARITHMETIC_OP_LABEL_MINIMUM) \
LABEL_MEASURE_MINMAX_OP(*v!=b, <) \
else if(p->operator==GAL_ARITHMETIC_OP_LABEL_MAXIMUM) \
LABEL_MEASURE_MINMAX_OP(*v!=b, >) \
} \
else /* On a floating point type. */ \
{ \
if(p->operator==GAL_ARITHMETIC_OP_LABEL_MINIMUM) \
LABEL_MEASURE_MINMAX_OP(*v==*v, <) \
else if(p->operator==GAL_ARITHMETIC_OP_LABEL_MAXIMUM) \
LABEL_MEASURE_MINMAX_OP(*v==*v, >) \
} \
\
/* Increment the slow dimension. */ \
increment += gal_tile_block_increment(p->labs, tile->dsize, \
num_increment++, NULL); \
} \
}
/* High-level macroS to call various low-level values-parsing and
output-writin macros. */
#define LABEL_MEASURE_PARSE_VALS(PARSE_MACRO) { \
lstart=gal_tile_start_end_ind_inclusive(tile, tile->block, \
start_end_inc); \
switch(p->vals->type) \
{ \
case GAL_TYPE_INT8: PARSE_MACRO(int8_t); break; \
case GAL_TYPE_UINT8: PARSE_MACRO(uint8_t); break; \
case GAL_TYPE_INT16: PARSE_MACRO(int16_t); break; \
case GAL_TYPE_UINT16: PARSE_MACRO(uint16_t); break; \
case GAL_TYPE_INT32: PARSE_MACRO(int32_t); break; \
case GAL_TYPE_UINT32: PARSE_MACRO(uint32_t); break; \
case GAL_TYPE_INT64: PARSE_MACRO(int64_t); break; \
case GAL_TYPE_UINT64: PARSE_MACRO(uint64_t); break; \
case GAL_TYPE_FLOAT32: PARSE_MACRO(float); break; \
case GAL_TYPE_FLOAT64: PARSE_MACRO(double); break; \
default: \
error(EXIT_FAILURE, 0, "%s: a bug! Please contact us at '%s' " \
"to find and fix the problem. The values type '%s' is " \
"not recognized", __func__, PACKAGE_BUGREPORT, \
gal_type_name(p->vals->type, 1)); \
} \
}
#define LABEL_MEASURE_OUTPUT_WRITE(OT) { \
OT *o, *of, *ostart, *ow=(OT *)(&outputvalue); \
increment=0; /* Was changed while parsing input values. */ \
num_increment=1; /* Was changed wihle parsing input values. */ \
lstart=gal_tile_start_end_ind_inclusive(tile, tile->block, \
start_end_inc); \
ostart=gal_tile_start_end_ind_inclusive(tile, p->out, start_end_inc); \
while( start_end_inc[0] + increment <= start_end_inc[1] ) \
{ \
l = lstart + increment; \
of = ( o = ostart + increment ) + tile->dsize[tile->ndim-1]; \
do if(*l++==lab) *o=*ow; while(++o<of); \
increment += gal_tile_block_increment(p->labs, tile->dsize, \
num_increment++, NULL); \
} \
}
#define LABEL_MEASURE_OUTPUT { \
switch(p->out->type) \
{ \
case GAL_TYPE_INT8: LABEL_MEASURE_OUTPUT_WRITE(int8_t); break; \
case GAL_TYPE_UINT8: LABEL_MEASURE_OUTPUT_WRITE(uint8_t); break; \
case GAL_TYPE_INT16: LABEL_MEASURE_OUTPUT_WRITE(int16_t); break; \
case GAL_TYPE_UINT16: LABEL_MEASURE_OUTPUT_WRITE(uint16_t); break; \
case GAL_TYPE_INT32: LABEL_MEASURE_OUTPUT_WRITE(int32_t); break; \
case GAL_TYPE_UINT32: LABEL_MEASURE_OUTPUT_WRITE(uint32_t); break; \
case GAL_TYPE_INT64: LABEL_MEASURE_OUTPUT_WRITE(int64_t); break; \
case GAL_TYPE_UINT64: LABEL_MEASURE_OUTPUT_WRITE(uint64_t); break; \
case GAL_TYPE_FLOAT32: LABEL_MEASURE_OUTPUT_WRITE(float); break; \
case GAL_TYPE_FLOAT64: LABEL_MEASURE_OUTPUT_WRITE(double); break; \
default: \
error(EXIT_FAILURE, 0, "%s: a bug! Please contact us at '%s' " \
"to find and fix the problem. The values type '%s' is " \
"not recognized", __func__, PACKAGE_BUGREPORT, \
gal_type_name(p->vals->type, 1)); \
} \
}
static void *
label_measure_worker(void *inprm)
{
/* Low-level definitions to be done first. */
struct gal_threads_params *tprm=(struct gal_threads_params *)inprm;
struct label_measure_p *p=(struct label_measure_p *)tprm->params;
/* For parsing tiles. */
int32_t lab;
size_t i, tind;
gal_data_t *tile;
/* For parsing/writing pixels within a tile. */
int32_t *l, *lstart;
uint8_t commonoutput=1;
size_t increment, num_increment;
uint64_t outputvalue; /* For storage, Will be cast to values' type. */
size_t start_end_inc[2]={0,p->tiles->block->size-1}; /* Is inclusive */
/* Go over all the tiles/labels that were assigned to this thread. */
for(i=0; tprm->indexs[i] != GAL_BLANK_SIZE_T; ++i)
{
/* For easy reading and initializations. */
increment=0;
num_increment=1;
tind = tprm->indexs[i];
tile = &p->tiles[tind];
lab = p->lab_from_tile ? p->lab_from_tile[tind] : tind+1;
/* Find the output value for this tile. */
switch(p->operator)
{
case GAL_ARITHMETIC_OP_LABEL_AREA:
commonoutput=0; label_measure_area(p, tile, lab);
break;
case GAL_ARITHMETIC_OP_LABEL_MINIMUM:
case GAL_ARITHMETIC_OP_LABEL_MAXIMUM:
LABEL_MEASURE_PARSE_VALS(LABEL_MEASURE_MINMAX);
break;
default:
error(EXIT_FAILURE,0,"%s: a bug! Please contact us at '%s' to "
"find and fix the problem. The code '%d' is not "
"recognized as an operator", __func__, PACKAGE_BUGREPORT,
p->operator);
}
/* If the operator's function/macro did not write the output, use the
common output writing function. */
if(commonoutput) LABEL_MEASURE_OUTPUT;
}
/* Wait for all the other threads to finish, then return. */
if(tprm->b) pthread_barrier_wait(tprm->b);
return NULL;
}
gal_data_t *
gal_label_measure(gal_data_t *labels, gal_data_t *values, int operator,
size_t numthreads, int flags)
{
int needsvals=0;
struct label_measure_p p={0};
gal_data_t *lab_fromto_tile=NULL;
size_t ntiles, maxlab=GAL_BLANK_SIZE_T;
uint8_t votype=GAL_TYPE_INVALID; /* Type for values and output. */
/* Fill the necessary parameters. */
p.operator=operator;
p.labs=gal_checkset_labels_to_int32(labels, __func__);
/* If the values are necessary, make sure they are float32. */
switch(operator)
{
case GAL_ARITHMETIC_OP_LABEL_AREA:
votype=GAL_TYPE_UINT32;
break;
case GAL_ARITHMETIC_OP_LABEL_MINIMUM:
case GAL_ARITHMETIC_OP_LABEL_MAXIMUM:
if(values) votype=values->type;
needsvals=1;
break;
default:
error(EXIT_FAILURE, 0, "%s: the operator code '%d' is not "
"recognized", __func__, operator);
}
/* Necessary allocations. */
if(needsvals)
{
if(values==NULL)
error(EXIT_FAILURE, 0, "%s: the requested label measurement "
"operator needs a 'values' argument (should not be "
"NULL)", __func__);
p.vals = ( values->type==votype
? values
: gal_data_copy_to_new_type(values, votype) );
}
p.out=gal_data_alloc(NULL, votype, labels->ndim, labels->dsize,
labels->wcs, 1, labels->minmapsize,
labels->quietmmap, NULL, NULL, NULL);
/* Build a tile for every label; the 'rows_to_remove' and 'numunique' are
not used/relevant in this function. */
p.tiles=gal_tile_per_label(p.labs, &maxlab, 0, &lab_fromto_tile);
if(lab_fromto_tile)
{
p.lab_to_tile=lab_fromto_tile->next->array;
p.lab_from_tile=lab_fromto_tile->array;
ntiles=lab_fromto_tile->size;
}
else ntiles=maxlab;
/* Spin-off the threads to do the measurements on each label and write
the output. */
gal_threads_spin_off(label_measure_worker, &p, ntiles, numthreads,
labels->minmapsize, labels->quietmmap);
/* Clean up. */
if(p.vals!=values) { gal_data_free(p.vals); p.vals=NULL; }
if(p.labs!=labels) { gal_data_free(p.labs); p.labs=NULL; }
if(flags & GAL_ARITHMETIC_FLAG_FREE)
{ gal_data_free(values); gal_data_free(labels); }
gal_data_array_free(p.tiles, ntiles, 0);
gal_list_data_free(lab_fromto_tile);
/* Return the output. */
return p.out;
}
|