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
|
/*
* This file is part of the HDRL
* Copyright (C) 2012,2013 European Southern Observatory
*
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/*-----------------------------------------------------------------------------
Includes
-----------------------------------------------------------------------------*/
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 500 /* posix 2001, mkstemp */
#endif
#include "hdrl_utils.h"
#include "hdrl_types.h"
#include "hdrl_elemop.h"
#include "hdrl_prototyping.h"
#include "hdrl_imagelist.h"
#include <string.h>
#include <assert.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <math.h>
#include <stdarg.h>
/*-----------------------------------------------------------------------------
Static
-----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/**
@defgroup hdrl_utils General Utility Functions
This module contain various utilities functions that might be used in several
of the HDRL modules.
*/
/*----------------------------------------------------------------------------*/
/**@{*/
/*----------------------------------------------------------------------------*/
/**
@brief Get the pipeline copyright and license
@return The copyright and license string
The function returns a pointer to the statically allocated license string.
This string should not be modified using the returned pointer.
*/
/*----------------------------------------------------------------------------*/
const char * hdrl_get_license(void)
{
static const char * hdrl_license =
"This file is part of the HDRL Instrument Pipeline\n"
"Copyright (C) 2012,2013 European Southern Observatory\n"
"\n"
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation; either version 2 of the License, or\n"
"(at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, \n"
"MA 02110-1301 USA";
return hdrl_license;
}
/*-----------------------------------------------------------------------------
Rectangular Region Parameters Definition
-----------------------------------------------------------------------------*/
/** @cond PRIVATE */
typedef struct {
HDRL_PARAMETER_HEAD;
cpl_size llx ;
cpl_size lly ;
cpl_size urx ;
cpl_size ury ;
} hdrl_rect_region_parameter;
/* Parameter type */
static hdrl_parameter_typeobj hdrl_rect_region_parameter_type = {
HDRL_PARAMETER_RECT_REGION, /* type */
(hdrl_alloc *)&cpl_malloc, /* fp_alloc */
(hdrl_free *)&cpl_free, /* fp_free */
NULL, /* fp_destroy */
sizeof(hdrl_rect_region_parameter), /* obj_size */
};
/** @endcond */
/*----------------------------------------------------------------------------*/
/**
@brief Creates Rect Region Parameters object
@param llx
@param lly
@param urx
@param ury
@return the Rect Region parameters
*/
/*----------------------------------------------------------------------------*/
hdrl_parameter * hdrl_rect_region_parameter_create(
cpl_size llx,
cpl_size lly,
cpl_size urx,
cpl_size ury)
{
hdrl_rect_region_parameter * p = (hdrl_rect_region_parameter *)
hdrl_parameter_new(&hdrl_rect_region_parameter_type);
p->llx = llx ;
p->lly = lly ;
p->urx = urx ;
p->ury = ury ;
return (hdrl_parameter *)p;
}
/*----------------------------------------------------------------------------*/
/**
@brief Update Rect Region Parameters object
@param rect_region The region to update
@param llx
@param lly
@param urx
@param ury
@return the error code in case of error or CPL_ERROR_NONE
*/
/*----------------------------------------------------------------------------*/
cpl_error_code hdrl_rect_region_parameter_update(
hdrl_parameter * rect_region,
cpl_size llx,
cpl_size lly,
cpl_size urx,
cpl_size ury)
{
hdrl_rect_region_parameter * p = (hdrl_rect_region_parameter *)rect_region ;
p->llx = llx ;
p->lly = lly ;
p->urx = urx ;
p->ury = ury ;
return hdrl_rect_region_parameter_verify(rect_region, -1, -1);
}
/*----------------------------------------------------------------------------*/
/**
@brief Check that the parameter is hdrl_rect_region parameter
@return the parameter to check
*/
/*----------------------------------------------------------------------------*/
cpl_boolean hdrl_rect_region_parameter_check(const hdrl_parameter * self)
{
return hdrl_parameter_check_type(self, &hdrl_rect_region_parameter_type);
}
/*-----------------------------------------------------------------------------
Rect Region Parameters Accessors
-----------------------------------------------------------------------------*/
/**
* @brief get lower left x coordinate of rectangual region
*/
cpl_size hdrl_rect_region_get_llx(const hdrl_parameter * p)
{
cpl_ensure(p, CPL_ERROR_NULL_INPUT, -1) ;
return ((hdrl_rect_region_parameter *)p)->llx;
}
/**
* @brief get lower left y coordinate of rectangual region
*/
cpl_size hdrl_rect_region_get_lly(const hdrl_parameter * p)
{
cpl_ensure(p, CPL_ERROR_NULL_INPUT, -1) ;
return ((hdrl_rect_region_parameter *)p)->lly;
}
/**
* @brief get upper right x coordinate of rectangular region
*/
cpl_size hdrl_rect_region_get_urx(const hdrl_parameter * p)
{
cpl_ensure(p, CPL_ERROR_NULL_INPUT, -1) ;
return ((hdrl_rect_region_parameter *)p)->urx;
}
/**
* @brief get upper right y coordinate of rectangual region
*/
cpl_size hdrl_rect_region_get_ury(const hdrl_parameter * p)
{
cpl_ensure(p, CPL_ERROR_NULL_INPUT, -1) ;
return ((hdrl_rect_region_parameter *)p)->ury;
}
/*----------------------------------------------------------------------------*/
/**
@brief Verify basic correctness of the parameters
@param param rect region parameters
@param max_x max value for upper x bound, set to < 0 to skip check
@param max_y max value for upper y bound, set to < 0 to skip check
@return CPL_ERROR_NONE if everything is ok, an error code otherwise
*/
/*----------------------------------------------------------------------------*/
cpl_error_code hdrl_rect_region_parameter_verify(
const hdrl_parameter * param,
const cpl_size max_x,
const cpl_size max_y)
{
const hdrl_rect_region_parameter * param_loc =
(hdrl_rect_region_parameter *)param ;
cpl_error_ensure(param != NULL, CPL_ERROR_NULL_INPUT,
return CPL_ERROR_NULL_INPUT, "NULL Input Parameters");
cpl_error_ensure(hdrl_rect_region_parameter_check(param),
CPL_ERROR_ILLEGAL_INPUT, return CPL_ERROR_ILLEGAL_INPUT,
"Expected Rect Region parameter") ;
cpl_error_ensure(param_loc->llx >= 1 && param_loc->lly >= 1 &&
param_loc->urx >= 1 && param_loc->ury >= 1, CPL_ERROR_ILLEGAL_INPUT,
return CPL_ERROR_ILLEGAL_INPUT,
"Coordinates must be strictly positive");
cpl_error_ensure(param_loc->urx >= param_loc->llx, CPL_ERROR_ILLEGAL_INPUT,
return CPL_ERROR_ILLEGAL_INPUT,
"urx (%ld) must be larger equal than llx (%ld)",
(long)param_loc->urx, (long)param_loc->llx);
cpl_error_ensure(param_loc->ury >= param_loc->lly, CPL_ERROR_ILLEGAL_INPUT,
return CPL_ERROR_ILLEGAL_INPUT,
"ury (%ld) must be larger equal than lly (%ld)",
(long)param_loc->ury, (long)param_loc->lly);
if (max_x > 0)
cpl_error_ensure(param_loc->urx <= max_x, CPL_ERROR_ILLEGAL_INPUT,
return CPL_ERROR_ILLEGAL_INPUT,
"urx %zu larger than maximum %zu",
(size_t)param_loc->urx, (size_t)max_x);
if (max_y > 0)
cpl_error_ensure(param_loc->urx <= max_x, CPL_ERROR_ILLEGAL_INPUT,
return CPL_ERROR_ILLEGAL_INPUT,
"ury %zu larger than maximum %zu",
(size_t)param_loc->ury, (size_t)max_y);
return CPL_ERROR_NONE;
}
/* ---------------------------------------------------------------------------*/
/**
@brief Create parameter list for hdrl_rect_region
@param base_context base context of parameter (e.g. recipe name)
@param prefix prefix of parameter, may be empty string
@param name_prefix prefix for the parameter names, may be empty string
@param defaults default parameters values
@return cpl_parameterlist
Creates a parameterlist containing
base_context.prefix.name-prefixllx
base_context.prefix.name-prefixlly
base_context.prefix.name-prefixurx
base_context.prefix.name-prefixury
The CLI aliases omit the base_context.
*/
/* ---------------------------------------------------------------------------*/
cpl_parameterlist * hdrl_rect_region_parameter_create_parlist(
const char * base_context,
const char * prefix,
const char * name_prefix,
const hdrl_parameter * defaults)
{
cpl_ensure(base_context && prefix && name_prefix && defaults,
CPL_ERROR_NULL_INPUT, NULL);
cpl_parameterlist * parlist = cpl_parameterlist_new();
/* --prefix.llx */
hdrl_setup_vparameter(parlist, prefix, ".", name_prefix,
"llx", base_context,
"Lower left x pos. (FITS) defining the region",
CPL_TYPE_INT, (int)hdrl_rect_region_get_llx(defaults));
/* --prefix.lly */
hdrl_setup_vparameter(parlist, prefix, ".", name_prefix,
"lly", base_context,
"Lower left y pos. (FITS) defining the region",
CPL_TYPE_INT, (int)hdrl_rect_region_get_lly(defaults));
/* --prefix.urx */
hdrl_setup_vparameter(parlist, prefix, ".", name_prefix,
"urx", base_context,
"Upper right x pos. (FITS) defining the region",
CPL_TYPE_INT, (int)hdrl_rect_region_get_urx(defaults));
/* --prefix.ury */
hdrl_setup_vparameter(parlist, prefix, ".", name_prefix,
"ury", base_context,
"Upper right y pos. (FITS) defining the region",
CPL_TYPE_INT, (int)hdrl_rect_region_get_ury(defaults));
if (cpl_error_get_code()) {
cpl_parameterlist_delete(parlist);
return NULL;
}
return parlist;
}
/* ---------------------------------------------------------------------------*/
/**
@brief parse parameterlist for rectangle parameters
@param parlist parameter list to parse
@param prefix prefix of parameter
@param name_prefix prefix of parameter name, may be empty string
@see hdrl_rect_get_parlist()
@return A newly allocated hdrl_rect_region parameter or NULL in error case
The returned object must be deallocated with hdrl_parameter_delete()
parameterlist should have been created with hdrl_rect_get_parlist or have the
same name hierachy
*/
/* ---------------------------------------------------------------------------*/
hdrl_parameter * hdrl_rect_region_parameter_parse_parlist(
const cpl_parameterlist * parlist,
const char * prefix,
const char * name_prefix)
{
cpl_size llx, lly, urx, ury ;
cpl_error_ensure(prefix && parlist, CPL_ERROR_NULL_INPUT,
return NULL, "NULL Input Parameters");
const char * sep = strlen(prefix) > 0 ? "." : "";
const char * points[] = {"llx", "lly", "urx", "ury"};
cpl_size * dest[] = {&llx, &lly, &urx, &ury};
for (size_t i = 0; i < 4; i++) {
char * name = cpl_sprintf("%s%s%s%s", prefix, sep,
name_prefix, points[i]);
const cpl_parameter * par = cpl_parameterlist_find_const(parlist, name);
*(dest[i]) = cpl_parameter_get_int(par);
cpl_free(name);
}
if (cpl_error_get_code()) {
cpl_error_set_message(cpl_func, CPL_ERROR_DATA_NOT_FOUND,
"Error while parsing parameterlist "
"with prefix %s", prefix);
return NULL;
}
return hdrl_rect_region_parameter_create(llx, lly, urx, ury) ;
}
/* ---------------------------------------------------------------------------*/
/**
* @brief join strings together
*
* @param sep_ separator to place between strings, NULL equals empty string
* @param n number of strings to join
*
* The input strings may be empty or NULL in which case it skips the entry
* adding no extra separator.
*
* @return joined string, must be deallocated by user with cpl_free
*/
/* ---------------------------------------------------------------------------*/
char * hdrl_join_string(const char * sep_, int n, ...)
{
va_list vl;
char * res = NULL;
const char * sep = sep_ ? sep_ : "";
cpl_ensure(n > 0, CPL_ERROR_ILLEGAL_INPUT, NULL);
va_start(vl, n);
for (int i = 0; i < n; i++) {
char * tmp = res;
char * val = va_arg(vl, char *);
if (val == NULL || strlen(val) == 0) {
continue;
}
if (!res) {
res = cpl_strdup(val);
}
else {
res = cpl_sprintf("%s%s%s", res, sep, val);
}
cpl_free(tmp);
}
va_end(vl);
return res;
}
/*----------------------------------------------------------------------------*/
/**
@brief wrap negative or zero coordinates around full image size
@param rect_region rect region to wrap
@param nx image size in x, nx is added to entries < 1
@param ny image size in y, ny is added to entries < 1
@return cpl_error_code
allows reverse indexing: 0 would be nx, -2 would be nx - 2 etc
Wrapping is based in FITS convention: 1 first pixel, nx last pixel inclusive
*/
/*----------------------------------------------------------------------------*/
cpl_error_code hdrl_rect_region_fix_negatives(
hdrl_parameter * rect_region,
const cpl_size nx,
const cpl_size ny)
{
hdrl_rect_region_parameter * rr_loc =
(hdrl_rect_region_parameter *)rect_region ;
cpl_error_ensure(rect_region != 0, CPL_ERROR_NULL_INPUT,
return CPL_ERROR_NULL_INPUT, "region input must not be NULL");
cpl_error_ensure(hdrl_rect_region_parameter_check(rect_region),
CPL_ERROR_ILLEGAL_INPUT, return CPL_ERROR_ILLEGAL_INPUT,
"Expected Rect Region parameter") ;
if (nx > 0 && rr_loc->llx < 1) rr_loc->llx += nx;
if (ny > 0 && rr_loc->lly < 1) rr_loc->lly += ny;
if (nx > 0 && rr_loc->urx < 1) rr_loc->urx += nx;
if (ny > 0 && rr_loc->ury < 1) rr_loc->ury += ny;
return hdrl_rect_region_parameter_verify(rect_region, nx, ny);
}
/** @cond EXPERIMENTAL */
/* ---------------------------------------------------------------------------*/
/**
* @brief return file descriptor of a temporary file
* @param dir directory prefix to place the file in, may be NULL
* @param unlink unlink the file from the filesystem immediately
* @return file descriptor or -1 on error
* @note if dir is NULL or not writable it tries to create a file in following
* directories in decreasing order of preference:
* $TMPDIR, /var/tmp, /tmp, $PWD
*/
/* ---------------------------------------------------------------------------*/
int hdrl_get_tempfile(const char * dir, cpl_boolean unlink)
{
/* options in decreasing preference */
const char * tmpdirs[] = {
/* user override */
getenv("TMPDIR"),
/* large file temp */
"/var/tmp/",
/* small file temp, may be tmpfs */
"/tmp/"
};
const size_t ndirs = sizeof(tmpdirs) / sizeof(tmpdirs[0]);
const char * tmpdir = NULL;
if (dir && access(dir, W_OK) == 0) {
tmpdir = dir;
}
else {
for (size_t i = 0; i < ndirs; i++) {
if (tmpdirs[i] && access(tmpdirs[i], W_OK) == 0) {
tmpdir = tmpdirs[i];
break;
}
}
}
{
/* try $PWD if no tmpdir found */
char * template = hdrl_join_string("/", 2, tmpdir, "hdrl_tmp_XXXXXX");
int fd = mkstemp(template);
if (fd == -1) {
cpl_error_set_message(cpl_func, CPL_ERROR_FILE_IO,
"Temporary file creation failed: %s",
strerror(errno));
cpl_free(template);
return -1;
}
cpl_msg_debug(cpl_func, "Created tempfile %s", template);
if (unlink) {
remove(template);
}
cpl_free(template);
return fd;
}
}
/* ---------------------------------------------------------------------------*/
/**
@brief get the absoluet current working directory
@return char string, must be deleted by the user with cpl_free
*/
/* ---------------------------------------------------------------------------*/
char * hdrl_get_cwd(void)
{
size_t n = 4096;
char * buf;
errno = 0;
/* if only we could use sane GNU functions instead of this posix crap */
while (1) {
buf = cpl_malloc(n);
if (getcwd(buf, n) != 0) {
break;
}
else if (errno == ERANGE) {
/* increase buffer, repeat */
errno = 0;
n *= 2;
cpl_free(buf);
}
else {
cpl_free(buf);
cpl_error_set_message(cpl_func, CPL_ERROR_FILE_IO,
"Could not determine current working "
"directory: %s", strerror(errno));
return NULL;
}
}
return buf;
}
/* ---------------------------------------------------------------------------*/
/**
* @brief scale a imagelist using scaling factors in a vector
*
* @param scale vector containing scaling factors, the first element
* defines the value to scale to
* @param scale_e errors of the scaling factors
* @param scale_type scale type, additive or multiplicative
* @param data imagelist to be scaled
* @param errors errors of imagelist to be scaled
*
* If scale_type is HDRL_SCALE_ADDITIVE the difference of each value in the
* scaling vector is subtracted from the first element of the vector and added
* to each image in the imagelist.
*
* for i in vector.size:
* data[i] += vector[0] - vector[i]
*
* If scale_type is HDRL_SCALE_MULTIPLICATIVE the quotient of each value in
* the scaling vector to the first element of the vector is multiplied
* to each image in the imagelist.
* If an element of the scaling vector is zero the image will have all its
* pixels marked as bad in its bad pixel map.
*
* for i in vector.size:
* data[i] *= vector[0] / vector[i]
*
* The errors are propagated using error propagation of first order
* and assuming no correlations between the values.
*/
/* ---------------------------------------------------------------------------*/
cpl_error_code
hdrl_normalize_imagelist_by_vector(const cpl_vector * scale,
const cpl_vector * scale_e,
const hdrl_scale_type scale_type,
cpl_imagelist * data,
cpl_imagelist * errors)
{
cpl_ensure_code(scale, CPL_ERROR_NULL_INPUT);
cpl_ensure_code(scale_e, CPL_ERROR_NULL_INPUT);
cpl_ensure_code(data, CPL_ERROR_NULL_INPUT);
cpl_ensure_code(errors, CPL_ERROR_NULL_INPUT);
cpl_ensure_code(cpl_vector_get_size(scale) == cpl_imagelist_get_size(data),
CPL_ERROR_ILLEGAL_INPUT);
cpl_ensure_code(cpl_vector_get_size(scale_e) == cpl_vector_get_size(scale),
CPL_ERROR_ILLEGAL_INPUT);
cpl_ensure_code(cpl_imagelist_get_size(errors) ==
cpl_imagelist_get_size(data), CPL_ERROR_ILLEGAL_INPUT);
for (size_t i = 1; i < (size_t)cpl_imagelist_get_size(data); i++) {
const hdrl_data_t dfirst = cpl_vector_get(scale, 0);
const hdrl_error_t efirst = cpl_vector_get(scale_e, 0);
cpl_image * dimg = cpl_imagelist_get(data, i);
cpl_image * eimg = cpl_imagelist_get(errors, i);
if (scale_type == HDRL_SCALE_ADDITIVE) {
hdrl_data_t dscale_o = cpl_vector_get(scale, i);
hdrl_error_t escale_o = cpl_vector_get(scale_e, i);
/* dscale = dfirst - dscale_o */
hdrl_data_t dscale = dfirst;
hdrl_error_t escale = efirst;
hdrl_elemop_sub(&dscale, &escale, 1, &dscale_o, &escale_o, 1, NULL);
/* dimg = dimg + dscale */
hdrl_elemop_image_add_scalar(dimg, eimg, dscale, escale);
}
else if (scale_type == HDRL_SCALE_MULTIPLICATIVE) {
hdrl_data_t dscale_o = cpl_vector_get(scale, i);
hdrl_error_t escale_o = cpl_vector_get(scale_e, i);
if (dscale_o == 0.) {
cpl_msg_warning(cpl_func, "scale factor of image %zu is "
"not a number", i);
cpl_image_add_scalar(dimg, NAN);
cpl_image_add_scalar(eimg, NAN);
cpl_image_reject_value(dimg, CPL_VALUE_NAN);
cpl_image_reject_value(eimg, CPL_VALUE_NAN);
continue;
}
/* dscale = dfirst / dscale_o */
hdrl_data_t dscale = dfirst;
hdrl_error_t escale = efirst;
hdrl_elemop_div(&dscale, &escale, 1, &dscale_o, &escale_o, 1, NULL);
/* dimg = dimg * dscale */
hdrl_elemop_image_mul_scalar(dimg, eimg, dscale, escale);
}
else {
return cpl_error_set_message(cpl_func, CPL_ERROR_UNSUPPORTED_MODE,
"Unsupported scale type");
}
if (cpl_error_get_code())
break;
}
return cpl_error_get_code();
}
/* ---------------------------------------------------------------------------*/
/**
* @brief scale a imagelist using scaling images
*
* @param scale imagelist containing scaling factors, the first element
* defines the value to scale to
* @param scale_e errors of the scaling factors
* @param scale_type scale type, additive or multiplicative
* @param data imagelist to be scaled
* @param errors errors of imagelist to be scaled
*
* If scale_type is HDRL_SCALE_ADDITIVE the difference of each value in the
* scaling imagelist is subtracted from the first element of the vector and
* added to each image in the imagelist.
*
* for i in vector.size:
* data[i] += scale[0] - scale[i]
*
* If scale_type is HDRL_SCALE_MULTIPLICATIVE the quotient of each value in
* the scaling vector to the first element of the imagelist is multiplied
* to each image in the imagelist.
* If an element of the scaling vector is zero the image will have all its
* pixels marked as bad in its bad pixel map.
*
* for i in vector.size:
* data[i] *= scale[0] / scale[i]
*
* The errors are propagated using error propagation of first order
* and assuming no correlations between the values.
*/
/* ---------------------------------------------------------------------------*/
cpl_error_code
hdrl_normalize_imagelist_by_imagelist(const cpl_imagelist * scale,
const cpl_imagelist * scale_e,
const hdrl_scale_type scale_type,
cpl_imagelist * data,
cpl_imagelist * errors)
{
cpl_ensure_code(scale, CPL_ERROR_NULL_INPUT);
cpl_ensure_code(scale_e, CPL_ERROR_NULL_INPUT);
cpl_ensure_code(data, CPL_ERROR_NULL_INPUT);
cpl_ensure_code(errors, CPL_ERROR_NULL_INPUT);
cpl_ensure_code(cpl_imagelist_get_size(scale) ==
cpl_imagelist_get_size(data), CPL_ERROR_ILLEGAL_INPUT);
cpl_ensure_code(cpl_imagelist_get_size(scale_e) ==
cpl_imagelist_get_size(scale), CPL_ERROR_ILLEGAL_INPUT);
cpl_ensure_code(cpl_imagelist_get_size(errors) ==
cpl_imagelist_get_size(data), CPL_ERROR_ILLEGAL_INPUT);
for (size_t i = 1; i < (size_t)cpl_imagelist_get_size(data); i++) {
cpl_image * dscale =
cpl_image_duplicate(cpl_imagelist_get_const(scale, 0));
cpl_image * escale =
cpl_image_duplicate(cpl_imagelist_get_const(scale_e, 0));
cpl_image * dimg = cpl_imagelist_get(data, i);
cpl_image * eimg = cpl_imagelist_get(errors, i);
const cpl_image * dscale_o = cpl_imagelist_get_const(scale, i);
const cpl_image * escale_o = cpl_imagelist_get_const(scale_e, i);
if (scale_type == HDRL_SCALE_ADDITIVE) {
/* dscale = dfirst - dscale_o */
hdrl_elemop_image_sub_image(dscale, escale, dscale_o, escale_o);
/* dimg = dimg + dscale */
hdrl_elemop_image_add_image(dimg, eimg, dscale, escale);
}
else if (scale_type == HDRL_SCALE_MULTIPLICATIVE) {
/* dscale = dfirst / dscale_o */
hdrl_elemop_image_div_image(dscale, escale, dscale_o, escale_o);
/* dimg = dimg * dscale */
hdrl_elemop_image_mul_image(dimg, eimg, dscale, escale);
}
else {
cpl_image_delete(dscale);
cpl_image_delete(escale);
return cpl_error_set_message(cpl_func, CPL_ERROR_UNSUPPORTED_MODE,
"Unsupported scale type");
}
cpl_image_delete(dscale);
cpl_image_delete(escale);
if (cpl_error_get_code())
break;
}
return cpl_error_get_code();
}
/** @endcond */
/** @cond PRIVATE */
/*----------------------------------------------------------------------------*/
/**
@internal
@brief compress an image to a vector removing bad pixels
@param source image to compress
@param bpm optional bpm to use instead of the one in the image
@return cpl_vector or NULL if no good pixels or error
@note vector can't have size 0 so NULL is returned if all pixels are bad
*/
/*----------------------------------------------------------------------------*/
cpl_vector * hdrl_image_to_vector(
const cpl_image * source,
const cpl_mask * bpm)
{
cpl_ensure(source != NULL, CPL_ERROR_NULL_INPUT, NULL);
cpl_vector * vec_source = NULL;
/* only cast if required, extra copying of non double data is still
* faster than a loop with cpl_image_get */
cpl_image * d_img = cpl_image_get_type(source) == CPL_TYPE_DOUBLE ?
(cpl_image *)source : cpl_image_cast(source, CPL_TYPE_DOUBLE);
const cpl_size naxis1 = cpl_image_get_size_x(source);
const cpl_size naxis2 = cpl_image_get_size_y(source);
/* get raw data */
const double * restrict sdata = cpl_image_get_data_double_const(d_img);
const cpl_binary * restrict bpmd = NULL;
/* allocate output buffer */
double * restrict ddata = cpl_malloc(naxis1 * naxis2 *
sizeof(ddata[0]));
long j = 0;
if (bpm)
bpmd = cpl_mask_get_data_const(bpm);
else if (cpl_image_get_bpm_const(source) != NULL)
bpmd = cpl_mask_get_data_const(cpl_image_get_bpm_const(source));
if (bpmd == NULL) {
memcpy(ddata, sdata, naxis1 * naxis2 * sizeof(ddata[0]));
j = naxis1 * naxis2;
}
else {
/* copy only good pixels */
for (long i = 0; i < naxis1 * naxis2; i++) {
if (bpmd[i] == CPL_BINARY_0) {
ddata[j] = sdata[i];
j++;
}
}
}
assert(j == naxis1 * naxis2 -
(bpm ? cpl_mask_count(bpm) : cpl_image_count_rejected(source)));
if (j > 0) {
vec_source = cpl_vector_wrap(j, ddata);
}
else {
cpl_free(ddata);
}
if (d_img != source) cpl_image_delete(d_img);
return vec_source;
}
/* internal if imgdatabuf and maskbuf are not NULL they are assumed to hold the
* data buffers of the image in the list in order to save on cpl_image_get
* calls, error and type checking must be done by caller */
static cpl_vector * imagelist_to_vector(const cpl_imagelist * list,
const cpl_size nx,
const cpl_size x,
const cpl_size y,
const double ** imgdatabuf,
const cpl_binary ** maskbuf)
{
const long nz = list ? cpl_imagelist_get_size(list) : -1;
cpl_vector * vec = NULL;
double * restrict ddata = NULL;
unsigned long j = 0;
ddata = cpl_malloc(nz * sizeof(ddata[0]));
if (imgdatabuf && maskbuf) {
for (long k = 0; k < nz; k++) {
double v = imgdatabuf[k][(y - 1) * nx + (x - 1)];
cpl_binary rej = maskbuf[k] ?
maskbuf[k][(y - 1) * nx + (x - 1)] : 0;
if (!rej) {
ddata[j] = v;
j++;
}
}
}
else {
for (long k = 0; k < nz; k++) {
int rej;
const cpl_image * img = cpl_imagelist_get_const(list, k);
double v = cpl_image_get(img, x, y, &rej);
if (!rej) {
ddata[j] = v;
j++;
}
}
}
if (j > 0) {
vec = cpl_vector_wrap(j, ddata);
}
else {
cpl_free(ddata);
}
return vec;
}
/*----------------------------------------------------------------------------*/
/**
@internal
@brief compress an imagelist to a vector via z axis, removing bad pixels
@param list imagelist to compress
@param x x coordinate to compress over (FITS convention)
@param y y coordinate to compress over (FITS convention)
@return cpl_vector or NULL if no good pixels or error
@note vector can't have size 0 so NULL is returned if all pixels are bad
*/
/*----------------------------------------------------------------------------*/
cpl_vector * hdrl_imagelist_to_vector(const cpl_imagelist * list,
const cpl_size x,
const cpl_size y)
{
cpl_size nx;
const cpl_size nz = list ? cpl_imagelist_get_size(list) : -1;
cpl_ensure(list != NULL, CPL_ERROR_NULL_INPUT, NULL);
cpl_ensure(nz > 0, CPL_ERROR_ILLEGAL_INPUT, NULL);
cpl_ensure(x > 0, CPL_ERROR_ACCESS_OUT_OF_RANGE, NULL);
cpl_ensure(y > 0, CPL_ERROR_ACCESS_OUT_OF_RANGE, NULL);
{
const cpl_image * img = cpl_imagelist_get_const(list, 0);
const cpl_size ny = cpl_image_get_size_y(img);
nx = cpl_image_get_size_x(img);
cpl_ensure(x <= nx, CPL_ERROR_ACCESS_OUT_OF_RANGE, NULL);
cpl_ensure(y <= ny, CPL_ERROR_ACCESS_OUT_OF_RANGE, NULL);
}
return imagelist_to_vector(list, nx, x, y, NULL, NULL);
}
/*----------------------------------------------------------------------------*/
/**
@internal
@brief compress an imagelist to a vector via z axis for a row
@param list imagelist to compress
@param y y coordinate to compress over (FITS convention)
@param out output array of vector pointers of size nx
@return cpl_error_code
@note vector can't have size 0 so NULL is returned if all pixels are bad
more efficient than hdrl_imagelist_to_vector for double images as it will
call cpl_image_get less often by caching the data buffers
*/
/*----------------------------------------------------------------------------*/
cpl_error_code hdrl_imagelist_to_vector_row(const cpl_imagelist * list,
const cpl_size y,
cpl_vector ** out)
{
long nx;
int isdouble;
const long nz = list ? (long)cpl_imagelist_get_size(list) : -1;
cpl_ensure_code(list != NULL, CPL_ERROR_NULL_INPUT);
cpl_ensure_code(nz > 0, CPL_ERROR_ILLEGAL_INPUT);
cpl_ensure_code(y > 0, CPL_ERROR_ACCESS_OUT_OF_RANGE);
{
const cpl_image * img = cpl_imagelist_get_const(list, 0);
const cpl_size ny = cpl_image_get_size_y(img);
cpl_ensure_code(y <= ny, CPL_ERROR_ACCESS_OUT_OF_RANGE);
nx = (long)cpl_image_get_size_x(img);
isdouble = cpl_image_get_type(img) == CPL_TYPE_DOUBLE;
}
const double * imgdatabuf[nz];
const cpl_binary * maskbuf[nz];
for (long i = 0; i < nz && isdouble; i++) {
const cpl_image * img = cpl_imagelist_get_const(list, i);
const cpl_mask * bpm = cpl_image_get_bpm_const(img);
imgdatabuf[i] = cpl_image_get_data_double_const(img);
if (bpm) {
maskbuf[i] = cpl_mask_get_data_const(bpm);
}
else {
maskbuf[i] = NULL;
}
}
for (long x = 0; x < nx; x++) {
if (isdouble) {
out[x] = imagelist_to_vector(list, nx, x + 1, y,
imgdatabuf, maskbuf);
}
else {
out[x] = imagelist_to_vector(list, nx, x + 1, y, NULL, NULL);
}
}
return cpl_error_get_code();
}
/* ---------------------------------------------------------------------------*/
/**
* @brief wrap two cpl_imagelist around data and errors in hdrl_imagelist
*
* @param list input hdrl_imagelist
* @param data output data cpl_imagelist (may be NULL)
* @param errs output error cpl_imagelist (may be NULL)
* @return cpl_error_code
*
* @note the imagelists only wrap the images and must be deleted with
* cpl_imagelist_unwrap
*/
/* ---------------------------------------------------------------------------*/
cpl_error_code
hdrl_imagelist_to_cplwrap(const hdrl_imagelist * list,
cpl_imagelist ** data,
cpl_imagelist ** errs)
{
cpl_ensure_code(list, CPL_ERROR_NULL_INPUT);
if (data) {
*data = cpl_imagelist_new();
}
if (errs) {
*errs = cpl_imagelist_new();
}
for (cpl_size i = 0; i < hdrl_imagelist_get_size(list); i++) {
hdrl_image * img = hdrl_imagelist_get(list, i);
if (data) {
cpl_imagelist_set(*data, hdrl_image_get_image(img), i);
}
if (errs) {
cpl_imagelist_set(*errs, hdrl_image_get_error(img), i);
}
}
if (cpl_error_get_code()) {
if (data) {
cpl_imagelist_unwrap(*data);
*data = NULL;
}
if (errs) {
cpl_imagelist_unwrap(*errs);
*errs = NULL;
}
}
return cpl_error_get_code();
}
/* ---------------------------------------------------------------------------*/
/**
* @brief filter image on a grid
*
* @param ima image to filter
* @param x row vector of coordinates to filter on
* @param y row vector of coordinates to filter on
* @param filtersize_x size of the median filter
* @param filtersize_y size of the median filter
* @return filtered image of size of the grid
*
*/
/* ---------------------------------------------------------------------------*/
cpl_image *
hdrl_medianfilter_image_grid(const cpl_image * ima, cpl_matrix * x, cpl_matrix * y,
cpl_size filtersize_x, cpl_size filtersize_y)
{
cpl_error_ensure(ima != NULL, CPL_ERROR_NULL_INPUT, return NULL,
"NULL input image");
cpl_error_ensure(filtersize_x > 0 && filtersize_y > 0 ,
CPL_ERROR_INCOMPATIBLE_INPUT, return NULL,
"All function parameters must be greater then Zero");
const cpl_size nx = cpl_image_get_size_x(ima);
const cpl_size ny = cpl_image_get_size_y(ima);
const cpl_size steps_x = cpl_matrix_get_nrow(x);
const cpl_size steps_y = cpl_matrix_get_nrow(y);
cpl_image * ima_local = cpl_image_new(steps_x, steps_y, CPL_TYPE_DOUBLE);
for (cpl_size iy = 0; iy < steps_y; iy++) {
cpl_size middlep_y = cpl_matrix_get(y, iy, 0);
for (cpl_size ix = 0; ix < steps_x; ix++) {
cpl_size middlep_x = cpl_matrix_get(x, ix, 0);
cpl_size lowerlimit_x = CX_MAX(middlep_x - filtersize_x, 1);
cpl_size lowerlimit_y = CX_MAX(middlep_y - filtersize_y, 1);
cpl_size upperlimit_x = CX_MIN(middlep_x + filtersize_x, nx);
cpl_size upperlimit_y = CX_MIN(middlep_y + filtersize_y, ny);
double median = cpl_image_get_median_window(ima, lowerlimit_x,
lowerlimit_y, upperlimit_x, upperlimit_y);
cpl_image_set(ima_local, ix + 1, iy + 1, median);
cpl_msg_debug(cpl_func, "middlep_x: %lld, middlep_y: %lld, median: "
"%g", middlep_x, middlep_y, median);
}
}
return ima_local;
}
/* ---------------------------------------------------------------------------*/
/**
* @brief create linear space row vector
* @param start starting point
* @param stop end point, exclusive
* @param step step size
*
* @returns matrix with one row filled equally spaced points from start to end
*
*/
/* ---------------------------------------------------------------------------*/
cpl_matrix * hdrl_matrix_linspace(
cpl_size start,
cpl_size stop,
cpl_size step)
{
cpl_matrix * x = cpl_matrix_new(stop / step, 1);
for (intptr_t i = 0; start + i * step < stop && i < stop / step; i++) {
cpl_matrix_set(x, i, 0, start + i * step);
}
return x;
}
/* ---------------------------------------------------------------------------*/
/**
* @brief fit 2D legendre polynomials to img
*
* @param img image to be fitted
* @param order_x order of x polynomial
* @param order_y order of y polynomial
* @param grid_x x grid to evaluate on
* @param grid_y y grid to evaluate on
* @param orig_nx upper limit in x, exclusive
* @param orig_ny upper limit in y, exclusive
*
* @return coefficient matrix of the fitted 2-D polynomial
* @see hdrl_mime_linalg_pairwise_column_tensor_products_create,
* hdrl_legendre_to_image
*/
/* ---------------------------------------------------------------------------*/
cpl_matrix * hdrl_fit_legendre(
cpl_image * img,
int order_x,
int order_y,
cpl_matrix * grid_x,
cpl_matrix * grid_y,
cpl_size orig_nx,
cpl_size orig_ny)
{
cpl_size nx2 = cpl_matrix_get_nrow(grid_x);
cpl_size ny2 = cpl_matrix_get_nrow(grid_y);
cpl_matrix * xpolys =
hdrl_mime_legendre_polynomials_create(order_x + 1, 0, orig_nx - 1, grid_x);
cpl_matrix * ypolys =
hdrl_mime_legendre_polynomials_create(order_y + 1, 0, orig_ny - 1, grid_y);
cpl_matrix * tensors =
hdrl_mime_linalg_pairwise_column_tensor_products_create(ypolys,
xpolys);
cpl_matrix * mimage = cpl_matrix_wrap(nx2 * ny2, 1, cpl_image_get_data(img));
cpl_matrix * coeffs = cpl_matrix_solve_normal(tensors, mimage);
cpl_matrix_unwrap(mimage);
cpl_matrix_delete(xpolys);
cpl_matrix_delete(ypolys);
cpl_matrix_delete(tensors);
return coeffs;
}
/* ---------------------------------------------------------------------------*/
/**
* @brief evaluate 2D legendre polynomials on image
*
* @param coeffs legendre coefficients
* @param order_x order of x polynomial
* @param order_y order of y polynomial
* @param nx x size of image
* @param ny y size of image
* @return legendre polynomial evaluated on an image
*
*/
/* ---------------------------------------------------------------------------*/
cpl_image * hdrl_legendre_to_image(
cpl_matrix * coeffs,
int order_x,
int order_y,
cpl_size nx,
cpl_size ny)
{
/* evaluate on full image */
/* TODO need grid of original fit here? */
cpl_matrix * x = hdrl_matrix_linspace(0, nx, 1);
cpl_matrix * y = hdrl_matrix_linspace(0, ny, 1);
cpl_matrix * xpolys =
hdrl_mime_legendre_polynomials_create(order_x + 1, 0, nx - 1, x);
cpl_matrix * ypolys =
hdrl_mime_legendre_polynomials_create(order_y + 1, 0, ny - 1, y);
cpl_matrix * tensors =
hdrl_mime_linalg_pairwise_column_tensor_products_create(ypolys,
xpolys);
cpl_matrix * result = cpl_matrix_product_create(tensors, coeffs);
cpl_image * iresult = cpl_image_wrap(nx, ny, CPL_TYPE_DOUBLE,
cpl_matrix_get_data(result));
cpl_matrix_delete(x);
cpl_matrix_delete(y);
cpl_matrix_delete(xpolys);
cpl_matrix_delete(ypolys);
cpl_matrix_delete(tensors);
cpl_matrix_unwrap(result);
return iresult;
}
/* ---------------------------------------------------------------------------*/
/**
* @brief check if bad pixel masks are identical.
* @param mask1 input mask 1 to be compared with input mask 2
* @param mask2 input mask 2 to be compared with input mask 1
*
* @return 0 if the masks are identical - in all other cases 1
*/
/* ---------------------------------------------------------------------------*/
int hdrl_check_maskequality(const cpl_mask * mask1, const cpl_mask * mask2)
{
cpl_ensure(mask1, CPL_ERROR_NULL_INPUT, 1);
cpl_ensure(mask2, CPL_ERROR_NULL_INPUT, 1);
cpl_size m1nx = cpl_mask_get_size_x(mask1);
cpl_size m1ny = cpl_mask_get_size_y(mask1);
cpl_size m2nx = cpl_mask_get_size_x(mask2);
cpl_size m2ny = cpl_mask_get_size_y(mask2);
cpl_ensure(m1nx == m2nx, CPL_ERROR_NONE, 1);
cpl_ensure(m1ny == m2ny, CPL_ERROR_NONE, 1);
const cpl_binary * dm1bpm = cpl_mask_get_data_const(mask1);
const cpl_binary * dm2bpm = cpl_mask_get_data_const(mask2);
if (memcmp(dm1bpm, dm2bpm, m1nx * m1ny) != 0) {
return 1;
}
else {
return 0;
}
}
static const cpl_image *
image_const_row_view_create(const cpl_image * img,
cpl_size ly,
cpl_size uy)
{
const size_t dsz = cpl_type_get_sizeof(cpl_image_get_type(img));
const cpl_size nx = cpl_image_get_size_x(img);
const char * d = cpl_image_get_data_const(img);
size_t offset = (ly - 1) * nx;
cpl_size nny = uy - ly + 1;
cpl_image * wimg = cpl_image_wrap(nx, nny, cpl_image_get_type(img),
(char*)d + offset * dsz);
const cpl_mask * omask = cpl_image_get_bpm_const(img);
if (omask) {
cpl_mask * mask = cpl_mask_wrap(nx, nny,
(cpl_binary*)cpl_mask_get_data_const(omask) + offset);
cpl_mask_delete(cpl_image_set_bpm(wimg, mask));
}
return wimg;
}
static void
image_const_row_view_delete(const cpl_image * img)
{
cpl_mask_unwrap(cpl_image_unset_bpm((cpl_image*)(img)));
cpl_image_unwrap((cpl_image *)img);
}
/* ---------------------------------------------------------------------------*/
/**
* @brief compute a filter in parallel
*
* @param img image to filter
* @param kernel filter kernel (mutually exclusive with mask)
* @param mask filter mask (mutually exclusive with kernel)
* @param mode filter mode
* @return filtered image, must be deleted with cpl_image_delete
*
* if kernel is not NULL and mask is NULL cpl_image_filter is used
* if mask is not NULL and kernel is NULL cpl_image_filter_mask is used
*
* the kernel or mask size must be odd and less equal to the image size
*
*/
/* ---------------------------------------------------------------------------*/
cpl_image *
hdrl_parallel_filter_image(const cpl_image * img,
const cpl_matrix * kernel,
const cpl_mask * mask,
const cpl_filter_mode mode)
{
cpl_ensure(img, CPL_ERROR_NULL_INPUT, NULL);
intptr_t nx = cpl_image_get_size_x(img);
intptr_t ny = cpl_image_get_size_y(img);
intptr_t ky, kx;
/* TODO probably one can use all except COPY */
const cpl_border_mode border = CPL_BORDER_FILTER;
cpl_ensure((kernel && !mask) || (!kernel && mask),
CPL_ERROR_INCOMPATIBLE_INPUT, NULL);
if (kernel) {
ky = cpl_matrix_get_nrow(kernel);
kx = cpl_matrix_get_ncol(kernel);
}
else {
ky = cpl_mask_get_size_y(mask);
kx = cpl_mask_get_size_x(mask);
}
intptr_t hk = (ky / 2);
cpl_image * res = cpl_image_new(nx, ny, cpl_image_get_type(img));
cpl_ensure(ky % 2 == 1, CPL_ERROR_INCOMPATIBLE_INPUT, NULL);
cpl_ensure(ny >= ky, CPL_ERROR_INCOMPATIBLE_INPUT, NULL);
cpl_ensure(nx >= kx, CPL_ERROR_INCOMPATIBLE_INPUT, NULL);
/* filter first half-kernel rows (needs full kernel image) */
{
const cpl_image * slice = image_const_row_view_create(img, 1, ky);
cpl_image * slres = cpl_image_duplicate(slice);
if (kernel) {
cpl_image_filter(slres, slice, kernel, mode, border);
}
else {
cpl_image_filter_mask(slres, slice, mask, mode, border);
}
const cpl_image * slice2 = image_const_row_view_create(slres, 1, hk);
cpl_image_copy(res, slice2, 1, 1);
image_const_row_view_delete(slice2);
image_const_row_view_delete(slice);
cpl_image_delete(slres);
}
intptr_t y;
const intptr_t s = 200;
/* filter s sized row chunks needs one kernel overlap */
HDRL_OMP(omp parallel for lastprivate(y) if (ny > s + ky))
for (y = hk; y < ny - ky - (ny - ky) % s; y+=s) {
intptr_t l = (y + 1) - hk;
intptr_t u = (y + 1 + s) + hk;
const cpl_image * slice = image_const_row_view_create(img, l, u);
cpl_image * slres = cpl_image_new(nx, u - l + 1,
cpl_image_get_type(slice));
if (kernel) {
cpl_image_filter(slres, slice, kernel, mode, border);
}
else {
cpl_image_filter_mask(slres, slice, mask, mode, border);
}
const cpl_image * slice2 =
image_const_row_view_create(slres, hk + 1, u - l - hk);
cpl_image_copy(res, slice2, 1, y + 1);
image_const_row_view_delete(slice);
image_const_row_view_delete(slice2);
cpl_image_delete(slres);
}
/* filter remainder, needs half kernel overlap */
{
const cpl_image * slice = image_const_row_view_create(img, y + 1 - hk, ny);
cpl_image * slres = cpl_image_duplicate(slice);
if (kernel) {
cpl_image_filter(slres, slice, kernel, mode, border);
}
else {
cpl_image_filter_mask(slres, slice, mask, mode, border);
}
const cpl_image * slice2 =
image_const_row_view_create(slres, hk + 1, cpl_image_get_size_y(slice));
cpl_image_copy(res, slice2, 1, y + 1);
image_const_row_view_delete(slice);
image_const_row_view_delete(slice2);
cpl_image_delete(slres);
}
return res;
}
/** @endcond */
/**@}*/
|