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
|
What's new in CPL 7.3.2
=======================
- Fix build system issue causing the bundeled libcext being configured even
if the configure option --with-system-cext is used.
- Update included libcext dependency to version 1.2.6 to fix an issue with
strict compiler flags during build. This affects primarily MacOS with Xcode
14.3 and newer.
- Fix minor documentation issue for cpl_image_get(), cpl_image_get_complex().
- Improve documentation of cpl_wcs_convert() and cpl_image_get_interpolated().
- Ensure correct sorting of FITS cards mistakenly prefixed with HIERARCH.
What's new in CPL 7.3.1
=======================
- Fixed issue with too long by one character FITS records in the
cpl_multiframe API.
What's new in CPL 7.3
=====================
- Added new APIs to support updating of cpl_multiframe properties.
- Added unit tests for the cpl_multiframe module.
- cpl_wcs_convert() now requires consistent size of input objects. If before
the input matrix was too small the behaviour was undefined, if too large
incorrect elements were read.
What's new in CPL 7.2.3
=======================
- Remove obsolete runtime CFITSIO version check.
- In cpl_vector_fit_gaussian() the CPL error code is correctly returned when
the requested covariance matrix cannot be computed.
- cpl_imagelist_empty(), cpl_imagelist_delete(): An access to just free()'ed
memory related to a bad pixel map shared between multiple images has been
fixed.
- cpl_polynomial_fit(): Fixed a read-only buffer overflow when the dimdeg
parameter is false and the mindeg parameter non-NULL.
What's new in CPL 7.2.2
=======================
- Make build system version check work for cfitsio 4.1.0.
- cpl_propertylist_save(): Fixed a memory error when an integer type property
is too long to fit in a FITS card.
- cpl_geom_img_offset_combine(): Fixed a documentation bug
What's new in CPL 7.2.1
=======================
- Fixed possible memory corruption in cpl_dfs_setup_product_header().
- Add missing language linkage specification in the cpl_wlcalib module.
What's new in CPL 7.2
=====================
- New interfaces added:
cpl_parameter_new_enum_from_array()
cpl_matrix_solve_svd_threshold()
cpl_polynomial_eval_2d()
cpl_polynomial_eval_3d()
- Support for trivariate polynomials was added to the function
cpl_polynomial_fit()
- cpl_polynomials_fit() takes into account uncertainties of the
sample values if they are provided.
What's new in CPL 7.1.5
=======================
- Added FITS keyword HDRVER to the list of forbidden keywords when generating
products using cpl_dfs_setup_product_header().
- Translate the FITS keyword RADECSYS to RADESYS to comply with ESO data
standards when creating data product headers using
cpl_dfs_setup_product_header()
- Fixed memory leak in cpl_fit_lvmq()
- Fixed various compiler warnings reported by recent gcc versions
- Remove misleading message on missing flop counting support introduced in
CPL 7.1.4 from the CPL feature/dependencies description.
- Improved doxygen documentation (added search box, fixed missing
documentation of the cpl_ppm module, changes to cpl_image_move(),
cpl_mask_move(), title page)
What's new in CPL 7.1.4
=======================
- Require C99 complex arithmetic when building CPL. Fail at configuration
time if complex number arithmetic is not available.
- Guard include directives of the C99 header complex.h in public header
files to fix compilation errors when using a C++ compiler using C++11 or
newer. Note that the inclusion of complex.h in the public CPL headers is
unnecessary and may be removed in a future version!
- Use and provide updated m4 macros, compatible with Xcode 12.
What's new in CPL 7.1.3
=======================
- Build the (optional) gasgano library from static gasgano headers
- Use improved M4 macros regarding linking to third party libraries
- Minor code changes (unit test improvements, readability, comment typos)
What's new in CPL 7.1.2
=======================
- The release addresses the following issues:
cpl_propertylist_load(), cpl_propertylist_save(): Support also run-time
environments with LC_NUMERIC set so ',' is used as decimal point in
FITS headers.
cpl_propertylist_get_long_long(): Support values wider than 32-bit also on
32-bit systems.
cpl_propertylist_copy_property_regexp(): Copy also comment.
cpl_propertylist_load(): Fix bug preventing reading of a blank FITS card
when using gcc 9.1.0.
cpl_propertylist_load(): Improve error message on invalid FITS card value.
cpl_propertylist_save(): For non-unique, non-commentary FITS cards issue
a warning (not just an informational message).
What's new in CPL 7.1.1
=======================
- The release addresses the following issues:
Documentation of some internal functions has been removed
cpl_fit_lvmq(): The stopping criterion has been improved,
avoiding bad solutions on certain, noisy data. This affects also
cpl_fit_image_gaussian() and cpl_vector_fit_gaussian().
cpl_fit_image_gaussian(): Fixed memory error on extra bad pixels in error map
cpl_polynomial_eval(): Use Horner-scheme also for multivariate input for
improved accuracy and speed. This affects also cpl_polynomial_fit() for
multivariate input.
cpl_ppm_match_points(): Round-off errors on angle-differences causing
incorrect 2PI wrap-around (on certain 32-bit platforms) fixed.
cpl_propertylist_load(): Support FITS cards with floating point numbers
with a 'D'-exponent (FORTRAN format) and cards with strings containing
quotes.
cpl_propertylist_save(): Reduce time taken to create FITS header, this
benefits all FITS saving functions in CPL.
cpl_property_new(): Reduce usage of heap space
cpl_image_extract(): Avoid creating an empty bad pixel map. As for any CPL
image, the method for determining whether the created image has a bad
pixel map is to check the return value of cpl_image_get_bpm_const().
What's new in CPL 7.1
=====================
- New functions and functionality:
cpl_vector_get_minpos()
cpl_vector_get_maxpos()
cpl_vector_cycle()
cpl_matrix_solve_svd()
- cpl_free()/cpl_realloc(): With multi-threading a data race in the Xmemory
memory module could cause a false positive warning about a double free.
- cpl_mask_filter(): An access of uninitilized memory with CPL_BORDER_NOP
and options CPL_FILTER_OPENING or CPL_FILTER_CLOSING has been fixed.
- cpl_column_set_size(): An memory leak triggered with a zero
length and complex data types has been fixed.
- cpl_table_save(): Certain I/O errors (due to e.g. a full file
system could cause a memory leak, or with CPL_IO_MODE enabled,
a segmentation violation via a double free(). This has been fixed.
- cpl_imagelist_erase/cast(): If a cpl_image is inserted more than
once into an imagelist, then an in-place call to cpl_imagelist_cast()
and a call to cpl_imagelist_erase() would cause a segmentation violation
via a double free(). This has been fixed.
- When building CPL from source the 3rd party libraries fftw and wcslib
are now required by default.
What's new in CPL 7.0
=====================
- The release addresses the following issues:
cpl_mask_load(), cpl_mask_load_window(): Cast the loaded FITS data to
binary values.
cpl_propertylist_load(): WCS keywords are forced to floating-point
properties, as defined by the FITS standard.
cpl_parameter_new_enum(): Creation of a parameter with value type boolean
triggers an error. Using an empty alternatives list triggers an error
cpl_parameter_new_range(): Creation of a parameter with value type boolean
or string triggers an error.
cpl_table_power_column(): Aligned with the behaviour of the C library pow()
function, i.e. negative column entries do not become invalid when a
negative exponent is used as long as the exponent is an integral value.
cpl_table_fill_invalid_int():
cpl_table_fill_invalid_long():
cpl_table_fill_invalid_long_long():
cpl_table_fill_invalid_float():
cpl_table_fill_invalid_float_complex():
cpl_table_fill_invalid_double():
cpl_table_fill_invalid_double_complex():
Document that any element of array type is flagged as valid.
cpl_array_cast(): Redeclare input pointer as const
cpl_array_set_string(): Fix incorrect CPL error return code on error
cpl_array_power():
cpl_table_power_column():
Ensure correctness by calling pow(), powf()
cpl_array_new_complex_from_arrays(): Added
cpl_array_power_complex(): Added
Fixed type conversion issue with Intel Compiler Suite.
What's new in CPL 6.6
=====================
- New functions and functionality
Added CPL_IO_APPEND mode for tables. Note that this has to be considered
experimental, and has some know issues.
- The release addresses the following issues:
Add namespace protection for mpfit functions using the proper prefix.
cpl_image_hypot(): Update bad pixel map
What's new in CPL 6.5
=====================
- New functions and functionality
Added function cpl_dfs_sign_products() to be used to digitally sign final
data products as a last action (i.e. adding keywords CHECKSUM, DATASUM and
DATAMD5 to the product FITS headers).
Added the (still experimental) multi-frame API to allow joining data product
files into a single DICB compliant multi-extension FITS file.
- The release addresses the following issues:
cpl_image_divide_create(): Avoid undefined value for bad pixel on 0-division
cpl_test_init(): Avoid false errno warnings
What's new in CPL 6.4
=====================
- New functions and functionality
cpl_image_reject_value(): Reject special values (NaN, +/-inf, zero)
(this function was actually released in version 6.3)
Various bit wise operations on an integer type image:
cpl_image_and()
cpl_image_or()
cpl_image_xor()
cpl_image_and_scalar()
cpl_image_or_scalar()
cpl_image_xor_scalar()
cpl_image_not()
cpl_image_hypot(): The pixel-wise Euclidean distance function of two images
cpl_image_set_bpm(): Replaces the bad pixel map of the image
cpl_image_fill_window(): Fill an image window with a constant
cpl_imagelist_cast(): Casting of a CPL imagelist
(this function was actually released in version 6.3)
CPL_MIN(), CPL_MAX(): The minimum/maximum of two values
CPL_STRINGIFY(): Concatenation of identifiers
CPL_DIAG_PRAGMA_PUSH_IGN(), CPL_DIAG_PRAGMA_PUSH_ERR(),
CPL_DIAG_PRAGMA_POP: Suppress various compiler (gcc) warnings
CPL_INTERNAL, CPL_EXPORT: Control the visibility of non-static functions
(these macros were actually released in version 6.3)
cpl_wcs_get_ctype(), cpl_wcs_get_cunit(): Access the axis type and unit
of a world coordinate system.
cpl_table_set_column_savetype(): Added support for short integer save type
cpl_gaussian_eval_2d(): Evaluate a 2D Gaussian
What's new in CPL 6.3
=====================
- New functions and functionality
cpl_vector_sum(): Sum the elements of a vector
Two scaling filters for image filtering: CPL_FILTER_LINEAR_SCALE,
CPL_FILTER_MORPHO_SCALE
cpl_image_filter_mask(): Support the combination of CPL_FILTER_MEDIAN and
CPL_BORDER_CROP and bad pixel(s) in the input
Added support for table columns of type CPL_TYPE_LONG_LONG.
- Deprecated functions
cpl_frameset_get_frame(), cpl_frameset_get_frame_const(): Replaced by
cpl_frameset_get_position() and cpl_frameset_get_position_const(). This
fixes a flaw in the design of the old functions. New code should not use
the old functions anymore, and old code should be ported as soon as possible,
because it is intended to remove the old functions in version 7.0
- The release fixes the following bugs
The interpolation profiles CPL_KERNEL_HAMMING and CPL_KERNEL_HANN are now
multiplied by sinc(x), like CPL_KERNEL_LANCZOS.
What's new in CPL 6.2
=====================
- New functions and functionality
Support clang compiler: Stop CPLs usage of unsupported C99 operations
cpl_test_get_tested()
cpl_test_get_failed()
CPL_WCS_REGEXP: Regexp matching the FITS keys used for WCS
cpl_image_multiply(): Build with SSE2/3 enabled improves performance
for complex pixel data. SSE2 is enabled by default
on 64-bit operating systems.
- The release fixes the following bugs
cpl_image_get_fwhm(): gives wrong results
cpl_matrix_dump(): Meaningless format string modification
cpl_fit_image_gaussian(): No check of bad pixels in error map
cpl_fit_image_gaussian(): Robustness issue
cpl_imagelist_collapse_median_create(): Bad pixels ignored
cpl_test_abs_complex(): Wrong number in message
cpl_column_get_median(): Median of even number of samples ignores last sample
cpl_matrix_get_median(): Ditto
cpl_vector_get_median(): Ditto
cpl_apertures_get_median(): Ditto
cpl_wcs_platesol(): Ditto
cpl_propertylist: Fixed handling of properties of type long long.
- The release fixes the following documentation errors
cpl_flux_get_noise_window(): Document randomness better
cpl_image_get_median_dev_window(): Unclear doxygen
cpl_bivector has wrong copy-pasted doxygen intro
cpl_image_power_create(): Non-existing doxygen reference
CPL_FILTER_LINEAR: Elaborate on the normalisation of the kernel
CPL_FILTER_MORPHO: Ditto
What's new in CPL 6.1
=====================
- New functions and functionality
cpl_apertures_extract_mask()
cpl_fits_get_mode()
cpl_fits_set_mode()
cpl_imagelist_unwrap()
- The release fixes the following bugs
cpl_apertures_new_from_image(): segfault on complex input
cpl_flux_get_noise_window(): Incorrect error propagation
cpl_image_move(): No support of complex pixels
The caching of FITS files opened for reading did not support multi-threading
cpl_plot_columns(), cpl_plot_vectors(): NULL-options not supported
- The release fixes the following documentation errors
Dropped documentation for the cpl_errorstate module
Some internal and thus unavailable functions appeared in the documentation
Usage example of cpl_error_set_message() clarified
CPL_TYPE_COMPLEX was incorrecly documented from CPL 5.1.0
What's new in CPL 6.0
=====================
- New functions and functionality
cpl_apertures_get_maxpos_x
cpl_apertures_get_maxpos_y
cpl_apertures_get_minpos_x
cpl_apertures_get_minpos_y
cpl_apertures_get_pos_x
cpl_apertures_get_pos_y
cpl_mask_load
cpl_mask_load_window
cpl_mask_save
cpl_mask_threshold_image
cpl_init Now supports a new, experimental and faster FITS I/O mode,
which is enabled at run-time via the environment variable CPL_IO_MODE.
Refer to the documentation of cpl_init() for more details.
- Deprecated types and identifiers
cpl_apertures_get_max_x Replace with cpl_apertures_get_pos_x
cpl_apertures_get_max_y Replace with cpl_apertures_get_pos_y
cpl_type_bpp Replace with cpl_type
CPL_BPP_8_UNSIGNED Replace with CPL_TYPE_UCHAR
CPL_BPP_16_SIGNED Replace with CPL_TYPE_SHORT
CPL_BPP_16_UNSIGNED Replace with CPL_TYPE_USHORT
CPL_BPP_32_SIGNED Replace with CPL_TYPE_INT
CPL_BPP_IEEE_FLOAT Replace with CPL_TYPE_FLOAT
CPL_BPP_IEEE_DOUBLE Replace with CPL_TYPE_DOUBLE
No CPL_BPP macro should be used in a direct call to CFITSIO,
this will no longer work.
- Deprecated functions
cpl_apertures_get_fwhm Replace with a loop over cpl_image_get_fwhm
- No-cast image saving. cpl_image_save() and cpl_imagelist_save() now
supports CPL_TYPE_UNSPECIFIED as file type, this ensures that the
saving incurs no loss of information.
- A new type - cpl_size - to be used for all size-related parameters in CPL.
cpl_size is the largest possible signed integer type.
The new type has its own format specifier, the string literal
CPL_SIZE_FORMAT.
- Functions with changed API (Parameter redeclaration to cpl_size*)
Any call to one of the below functions must be modified accordingly
cpl_apertures_extract
cpl_apertures_extract_window
cpl_array_get_maxpos
cpl_array_get_minpos
cpl_flux_get_bias_window
cpl_flux_get_noise_window
cpl_frameset_labelise
cpl_frameset_extract
cpl_geom_img_offset_combine
cpl_image_get_maxpos
cpl_image_get_maxpos_window
cpl_image_get_minpos
cpl_image_get_minpos_window
cpl_image_labelise_mask_create
cpl_image_move
cpl_mask_move
cpl_matrix_get_maxpos
cpl_matrix_get_minpos
cpl_polynomial_fit
cpl_polynomial_get_coeff
cpl_polynomial_set_coeff
cpl_table_get_column_maxpos
cpl_table_get_column_minpos
- Functions with changed API (Parameter redeclaration to cpl_array*)
Any call to one of the below functions must be modified accordingly
(If a call passes NULL as the optional permutation parameter, then no
change is required).
cpl_matrix_decomp_lu
cpl_matrix_solve_lu
- Functions with changed API (Function or parameter redeclaration to cpl_size)
Any call to one of the below functions must at least be recompiled, or
better modified according to the new API
cpl_apertures_get_bottom
cpl_apertures_get_bottom_x
cpl_apertures_get_centroid_x
cpl_apertures_get_centroid_y
cpl_apertures_get_flux
cpl_apertures_get_left
cpl_apertures_get_left_y
cpl_apertures_get_max
cpl_apertures_get_max_x
cpl_apertures_get_max_y
cpl_apertures_get_mean
cpl_apertures_get_median
cpl_apertures_get_min
cpl_apertures_get_npix
cpl_apertures_get_right
cpl_apertures_get_right_y
cpl_apertures_get_size
cpl_apertures_get_stdev
cpl_apertures_get_top
cpl_apertures_get_top_x
cpl_array_count_invalid
cpl_array_dump
cpl_array_erase_window
cpl_array_extract
cpl_array_fill_window
cpl_array_fill_window_complex
cpl_array_fill_window_double
cpl_array_fill_window_double_complex
cpl_array_fill_window_float
cpl_array_fill_window_float_complex
cpl_array_fill_window_int
cpl_array_fill_window_invalid
cpl_array_fill_window_string
cpl_array_get
cpl_array_get_complex
cpl_array_get_double
cpl_array_get_double_complex
cpl_array_get_float
cpl_array_get_float_complex
cpl_array_get_int
cpl_array_get_size
cpl_array_get_string
cpl_array_insert
cpl_array_insert_window
cpl_array_is_valid
cpl_array_new
cpl_array_set
cpl_array_set_complex
cpl_array_set_double
cpl_array_set_double_complex
cpl_array_set_float
cpl_array_set_float_complex
cpl_array_set_int
cpl_array_set_invalid
cpl_array_set_size
cpl_array_set_string
cpl_array_wrap_double
cpl_array_wrap_double_complex
cpl_array_wrap_float
cpl_array_wrap_float_complex
cpl_array_wrap_int
cpl_array_wrap_string
cpl_bivector_get_size
cpl_bivector_new
cpl_fit_image_gaussian
cpl_fit_imagelist_polynomial
cpl_fit_imagelist_polynomial_window
cpl_fits_count_extensions
cpl_fits_find_extension
cpl_flux_get_noise_ring
cpl_frame_get_nextensions
cpl_frame_get_nplanes
cpl_framedata_create
cpl_framedata_get_min_count
cpl_framedata_get_max_count
cpl_framedata_set_min_count
cpl_framedata_set_max_count
cpl_framedata_set
cpl_frameset_erase
cpl_frameset_get_frame_const
cpl_frameset_get_frame
cpl_frameset_get_size
cpl_geom_img_offset_fine
cpl_geom_img_offset_saa
cpl_image_accept
cpl_image_collapse_median_create
cpl_image_collapse_window_create
cpl_image_copy
cpl_image_count_rejected
cpl_image_dump_window
cpl_image_extract
cpl_image_extract_subsample
cpl_image_fill_test_create
cpl_image_fit_gaussian
cpl_image_get
cpl_image_get_absflux_window
cpl_image_get_centroid_x_window
cpl_image_get_centroid_y_window
cpl_image_get_complex
cpl_image_get_flux_window
cpl_image_get_fwhm
cpl_image_get_max_window
cpl_image_get_mean_window
cpl_image_get_median_dev_window
cpl_image_get_median_window
cpl_image_get_min_window
cpl_image_get_size_x
cpl_image_get_size_y
cpl_image_get_sqflux_window
cpl_image_get_stdev_window
cpl_image_iqe
cpl_image_is_rejected
cpl_imagelist_collapse_minmax_create
cpl_imagelist_dump_window
cpl_imagelist_get
cpl_imagelist_get_const
cpl_imagelist_get_size
cpl_imagelist_load
cpl_imagelist_load_frameset
cpl_imagelist_load_window
cpl_imagelist_set
cpl_imagelist_unset
cpl_image_load
cpl_image_load_window
cpl_image_new
cpl_image_rebin
cpl_image_reject
cpl_image_set
cpl_image_set_complex
cpl_image_shift
cpl_image_wrap
cpl_image_wrap_double
cpl_image_wrap_double_complex
cpl_image_wrap_float
cpl_image_wrap_float_complex
cpl_image_wrap_int
cpl_mask_copy
cpl_mask_count
cpl_mask_count_window
cpl_mask_dump_window
cpl_mask_extract
cpl_mask_extract_subsample
cpl_mask_get
cpl_mask_get_size_x
cpl_mask_get_size_y
cpl_mask_is_empty_window
cpl_mask_load
cpl_mask_load_window
cpl_mask_new
cpl_mask_set
cpl_mask_shift
cpl_mask_wrap
cpl_matrix_copy
cpl_matrix_erase_columns
cpl_matrix_erase_rows
cpl_matrix_extract
cpl_matrix_extract_column
cpl_matrix_extract_diagonal
cpl_matrix_extract_row
cpl_matrix_fill_column
cpl_matrix_fill_diagonal
cpl_matrix_fill_row
cpl_matrix_fill_window
cpl_matrix_get
cpl_matrix_get_ncol
cpl_matrix_get_nrow
cpl_matrix_new
cpl_matrix_resize
cpl_matrix_set
cpl_matrix_set_size
cpl_matrix_shift
cpl_matrix_swap_columns
cpl_matrix_swap_rowcolumn
cpl_matrix_swap_rows
cpl_matrix_wrap
cpl_parameterlist_get_size
cpl_plot_bivectors
cpl_plot_columns
cpl_plot_image_col
cpl_plot_image_row
cpl_plot_vectors
cpl_polynomial_derivative
cpl_polynomial_extract
cpl_polynomial_fit_1d_create
cpl_polynomial_fit_2d_create
cpl_polynomial_get_degree
cpl_polynomial_get_dimension
cpl_polynomial_new
cpl_polynomial_shift_1d
cpl_polynomial_solve_1d
cpl_property_get_size
cpl_propertylist_load
cpl_propertylist_load_regexp
cpl_property_new_array
cpl_recipeconfig_get_min_count
cpl_recipeconfig_get_max_count
cpl_recipeconfig_set_tag
cpl_recipeconfig_set_input
cpl_stats_get_max_x
cpl_stats_get_max_y
cpl_stats_get_min_x
cpl_stats_get_min_y
cpl_stats_get_npix
cpl_stats_new_from_image_window
cpl_table_and_selected
cpl_table_and_selected_double
cpl_table_and_selected_double_complex
cpl_table_and_selected_float
cpl_table_and_selected_float_complex
cpl_table_and_selected_int
cpl_table_and_selected_invalid
cpl_table_and_selected_string
cpl_table_and_selected_window
cpl_table_count_invalid
cpl_table_count_selected
cpl_table_dump
cpl_table_erase_window
cpl_table_extract
cpl_table_fill_column_window
cpl_table_fill_column_window_array
cpl_table_fill_column_window_complex
cpl_table_fill_column_window_double
cpl_table_fill_column_window_double_complex
cpl_table_fill_column_window_float
cpl_table_fill_column_window_float_complex
cpl_table_fill_column_window_int
cpl_table_fill_column_window_string
cpl_table_get
cpl_table_get_array
cpl_table_get_column_depth
cpl_table_get_column_dimension
cpl_table_get_column_dimensions
cpl_table_get_complex
cpl_table_get_double
cpl_table_get_double_complex
cpl_table_get_float
cpl_table_get_float_complex
cpl_table_get_int
cpl_table_get_ncol
cpl_table_get_nrow
cpl_table_get_string
cpl_table_insert
cpl_table_insert_window
cpl_table_is_selected
cpl_table_is_valid
cpl_table_load_window
cpl_table_new
cpl_table_new_column_array
cpl_table_not_selected
cpl_table_or_selected
cpl_table_or_selected_double
cpl_table_or_selected_double_complex
cpl_table_or_selected_float
cpl_table_or_selected_float_complex
cpl_table_or_selected_int
cpl_table_or_selected_invalid
cpl_table_or_selected_string
cpl_table_or_selected_window
cpl_table_select_row
cpl_table_set
cpl_table_set_array
cpl_table_set_column_depth
cpl_table_set_column_invalid
cpl_table_set_complex
cpl_table_set_double
cpl_table_set_double_complex
cpl_table_set_float
cpl_table_set_float_complex
cpl_table_set_int
cpl_table_set_invalid
cpl_table_set_size
cpl_table_set_string
cpl_table_shift_column
cpl_table_unselect_row
cpl_table_where_selected
cpl_test_end
cpl_test_eq_macro
cpl_test_macro
cpl_test_noneq_macro
cpl_vector_correlate
cpl_vector_extract
cpl_vector_filter_lowpass_create
cpl_vector_filter_median_create
cpl_vector_find
cpl_vector_get
cpl_vector_get_size
cpl_vector_load
cpl_vector_new
cpl_vector_new_from_image_column
cpl_vector_new_from_image_row
cpl_vector_set
cpl_vector_set_size
cpl_vector_wrap
- Functions with changed API (Parameter redeclaration to cpl_type)
Any call to one of the below functions must at least be recompiled, or
better modified according to the new API
cpl_dfs_save_image
cpl_dfs_save_imagelist
cpl_image_save
cpl_imagelist_save
- The release fixes the following bugs
The use of an unnamed OpenMP critical section
cpl_init() segfaults with OpenMP if OMP_NUM_THREADS is undefined
cpl_fit_imagelist_polynomial() SIGABRT on complex input
cpl_image_filter(), cpl_image_filter_mask(): Error handling bug
cpl_imagelist_collapse_sigclip_create(): Nothing is rejected
cpl_image_get_complex(): NULL input dereferenced
cpl_geom_img_offset_combine(): Input imagelist is now const
- The release fixes the following documentation errors
Missing doxygen for cpl_stats modes, CPL_STATS_*
cpl_dfs_save_propertylist: applist is no longer optional
cpl_dfs_save_imagelist: applist is no longer optional
cpl_dfs_save_table: applist is no longer optional
What's new in CPL 5.2
============================================
- New functions in CPL 5.2:
cpl_array_cast()
cpl_mask_filter()
cpl_plot_mask()
cpl_image_unset_bpm()
- New functionality:
cpl_table_cast_column() allows casting from array columns of depth one
to plain columns, and viceversa.
- Bug fixes:
Casting table columns of type array to columns of type array.
cpl_table_save() returns in case of ILLEGAL_OUTPUT caused by
zero depth integer array columns; allocate empty integer
arrays in case they must be written to file.
cpl_image_new_from_accepted(): Older versions would force the
creation of an empty bad pixel map in any image in the input
image list, that did not already have one.
cpl_detector_interpolate_rejected(): Older versions would use wrong
interpolation values at the image border.
cpl_wcs_platesol(): All previous versions computes a wrong solution.
cpl_bivector_interpolate_linear(): Versions from 4.2.0 interpolates
the first value wrongly.
cpl_stats_dump(): Older versions do not dump median deviation
cpl_geom_img_offset_combine(): Older versions would use the error code
CPL_ERROR_ILLEGAL_OUTPUT instead of CPL_ERROR_DATA_NOT_FOUND.
cpl_dfs_update_product_header(): Older versions would not work if the
system macro L2_CACHE_BYTES was defined to 0.
cpl_end(): Free any memory allocated internally by FFTW.
cpl_vector_find(): Fail on non-sorted vector elements.
- Deprecated functions
cpl_mask_closing(): Use cpl_mask_filter() instead
cpl_mask_opening(): Use cpl_mask_filter() instead
cpl_mask_erosion(): Use cpl_mask_filter() instead
cpl_mask_dilation(): Use cpl_mask_filter() instead
- Doc fixes:
Specify that all arrays in a column must have same length
Complete doc of cpl_table_set_array()
Fix wrong LaTex code in cpl_fit_image_gaussian() doc.
Document that cpl_geom_img_offset_saa() handles bad pixels.
The pixel indexing convention ((1,1) for lower left) is documented.
The deprecated CPL functions are clearly documented as such.
What's new in CPL 5.1
============================================
- New functions in CPL 5.1
cpl_array_is_valid
cpl_array_dump_structure
cpl_array_dump
cpl_fit_image_gaussian
cpl_flux_get_bias_window
cpl_mask_dump_window
cpl_propertylist_append_property
cpl_propertylist_prepend_property
cpl_propertylist_insert_property
cpl_propertylist_insert_after_property
cpl_test_array_abs
cpl_test_eq_error
cpl_test_eq_ptr
cpl_test_get_cputime
cpl_test_get_walltime
cpl_test_imagelist_abs
cpl_test_noneq_ptr
cpl_test_vector_abs
- New function modes in CPL 5.1.
CPL_IO_APPEND
- Deprecated functions
cpl_image_fit_gaussian: Use cpl_fit_image_gaussian instead.
- Other Changes
CPL functions with complex types in their API are only available
(declared) when the CPL-based application #include's <complex.h>.
The functions effected by this are:
cpl_image_wrap_double_complex
cpl_image_wrap_float_complex
cpl_image_get_complex
cpl_image_set_complex
cpl_image_get_data_double_complex
cpl_image_get_data_double_complex_const
cpl_image_get_data_float_complex
cpl_image_get_data_float_complex_const
- Bug fixes
The filtering mode CPL_FILTER_STDEV had a bug which could cause wrong
outputs. This has been fixed.
- Known Problems
CPL release 5.1 (and all releases back to and including 4.1) has
a documentation bug in both cpl_image_turn() and cpl_mask_turn().
The orientation of the rotation is opposite of what is stated in
the documentation.
Given a rotation of 1, the function will rotate by
90 degrees clockwise and given a rotation of -1 the function
will rotate by 90 degrees counterclockwise. The documentation of
rotation by any odd number is similarly wrong. The documentation of
rotation by any even number is unaffected by the error.
What's new in CPL 5.0
============================================
- Deprecated functions.
A number of functions are now deprecated. The deprecated functions
will remain in CPL 5.X. The deprecated functions are:
cpl_fits_get_nb_extensions
cpl_fits_get_extension_nb
cpl_image_filter_median
cpl_image_filter_linear
cpl_image_filter_stdev
cpl_image_filter_morpho
cpl_msg_progress
cpl_polynomial_fit_1d_create
cpl_polynomial_fit_2d_create
cpl_vector_new_lss_kernel
cpl_vector_convolve_symmetric
- Warnings of use of deprecated functions.
Using gcc to compile code using the above mentioned functions will
lead to compiler warnings. These warnings can be suppressed with
-Wno-deprecated-declarations. This gcc option can be applied with
./configure CFLAGS=-Wno-deprecated-declarations .
- Functions with changed API
cpl_dfs_save_image
cpl_dfs_save_table
cpl_dfs_save_propertylist
cpl_dfs_save_imagelist
cpl_dfs_setup_product_header
cpl_geom_img_offset_saa
cpl_propertylist_erase_regexp
cpl_image_get_bpm_const
cpl_polynomial_shift_1d
cpl_imagelist_collapse_sigclip_create
- How to replace deprecated functions
cpl_fits_get_nb_extensions: Replace with cpl_fits_count_extensions
cpl_fits_get_extension_nb: Replace with cpl_fits_find_extension
cpl_image_filter_median: cpl_image * a = cpl_image_filter_median(b, k)
can be replaced by
int nx = cpl_image_get_size_x(b);
int ny = cpl_image_get_size_y(b);
int type = cpl_image_type(b);
cpl_image * a = cpl_image_new(nx, ny, type);
cpl_image_filter_mask(a, b, m, CPL_FILTER_MEDIAN, CPL_BORDER_FILTER);
- where m is a cpl_mask with a CPL_BINARY_1 whereever k has a 1.0.
cpl_image_filter_stdev: Same as for cpl_image_filter_median, but with
CPL_FILTER_STDEV
cpl_image_filter_linear: cpl_image * a = cpl_image_filter_linear(b, k)
can be replaced by
int nx = cpl_image_get_size_x(b);
int ny = cpl_image_get_size_y(b);
int type = cpl_image_type(b);
cpl_image * a = cpl_image_new(nx, ny, type);
cpl_image_filter(a, b, k, CPL_FILTER_LINEAR, CPL_BORDER_FILTER);
- where m is the cpl_matrix with the weights.
cpl_image_filter_morpho: Same as for cpl_image_filter_linear, but with
CPL_FILTER_MORPHO
cpl_polynomial_fit_1d_create:
cpl_polynomial * fit1d = cpl_polynomial_fit_1d_create(x_pos,
values,
degree,
mse);
can be replaced by
cpl_polynomial * fit1d = cpl_polynomial_new(1);
cpl_matrix * samppos = cpl_matrix_wrap(1, cpl_vector_get_size(x_pos),
cpl_vector_get_data(x_pos));
cpl_vector * fitresidual = cpl_vector_new(cpl_vector_get_size(x_pos));
cpl_polynomial_fit(fit1d, samppos, NULL, values, NULL,
CPL_FALSE, NULL, °ree);
cpl_vector_fill_polynomial_fit_residual(fitresidual, values, NULL, fit1d,
samppos, NULL);
cpl_matrix_unwrap(samppos);
mse = cpl_vector_product(fitresidual, fitresidual)
/ cpl_vector_get_size(fitresidual);
cpl_vector_delete(fitresidual);
cpl_polynomial_fit_2d_create: Similar to 1D, and the samppos matrix must
have two rows with copies of the two vectors in the x_pos bivector.
cpl_msg_progress: This function has no CPL 5.X equivalent
cpl_vector_new_lss_kernel: This function has no CPL 5.X equivalent
cpl_vector_convolve_symmetric: This function has no CPL 5.X equivalent
- How to change the calls to functions with new prototypes
cpl_dfs_save_image(allframes, parlist, usedframes, image, bpp, recipe,
procat, applist, remregexp, pipe_id, filename);
can be replaced with:
cpl_propertylist * prolist = applist
? cpl_propertylist_duplicate(applist)
: cpl_propertylist_new();
cpl_propertylist_append_string(prolist, CPL_DFS_PRO_CATG, procat);
cpl_dfs_save_image(allframes, NULL, parlist, usedframes, NULL, image, bpp,
recipe, prolist, remregexp, pipe_id, filename);
cpl_propertylist_delete(prolist);
cpl_dfs_save_table: See cpl_dfs_save_image
cpl_dfs_save_propertylist: See cpl_dfs_save_image
cpl_dfs_save_imagelist: See cpl_dfs_save_image
cpl_dfs_setup_product_header: Append a NULL pointer to the argument list,
cpl_geom_img_offset_saa: : Append two NULL pointers to the argument list,
cpl_propertylist_erase_regexp: In case of error, the return value is now
-1 instead of 0.
cpl_image_get_bpm_const: The function will now return NULL if the image
does not have a bad pixel map, meaning no pixels are bad. If the input
image is guaranteed to have a bad pixel map, then no change is needed.
Otherwise, if the bad pixel map must be modified the call should be
replaced with cpl_image_get_bpm(). If the bad pixel map will not be
modified i.e. only read, then a NULL value indicates that no pixels
are bad. This can be used both to determine if a pixel map exists for
the image, and to choose faster methods when no pixels are bad.
cpl_polynomial_shift_1d: Insert a 0 between the current two parameters.
cpl_imagelist_collapse_sigclip_create: Extend the argument list with
0.0, 1.0, 1, NULL.
- New functions in CPL
cpl_image_filter_xyz
cpl_fits_count_extensions
cpl_fits_find_extension
cpl_array_get_max
cpl_array_get_min
cpl_array_get_maxpos
cpl_array_get_minpos
cpl_array_get_mean
cpl_array_get_median
cpl_array_get_stdev
cpl_array_extract
cpl_array_insert_window
cpl_array_erase_window
cpl_array_insert
cpl_array_add
cpl_array_subtract
cpl_array_multiply
cpl_array_divide
cpl_array_add_scalar
cpl_array_subtract_scalar
cpl_array_multiply_scalar
cpl_array_divide_scalar
cpl_array_set_size
cpl_image_rebin
cpl_image_fill_jacobian
cpl_image_fill_jacobian_polynomial
cpl_array_power
cpl_array_abs
cpl_array_logarithm
cpl_array_exponential
cpl_table_where_selected
cpl_table_set_column_savetype
cpl_image_wrap_double_complex
cpl_image_wrap_float_complex
cpl_image_get_data_double_complex
cpl_image_get_data_double_complex_const
cpl_image_get_data_float_complex
cpl_image_get_data_float_complex_const
cpl_image_get_complex
cpl_image_set_complex
- New types CPL_TYPE_DOUBLE_COMPLEX and CPL_TYPE_FLOAT_COMPLEX
These 2 types are now supported for a limited set of image functions:
cpl_image_new
cpl_image_add
cpl_image_subtract
cpl_image_multiply
cpl_image_divide
cpl_image_add_create
cpl_image_subtract_create
cpl_image_multiply_create
cpl_image_divide_create
cpl_image_cast
cpl_image_fill_rejected
cpl_image_dump_window
cpl_image_extract
The purpose of the inclusion of these new types is to ease operations with
the FFTW library on CPL images. With these new types, there is no need to
remap the input pixel buffer before calling FFTW.
Example (with FFTW 2.1.5):
cpl_image * in = cpl_image_new(nx, ny, CPL_TYPE_FLOAT);
cpl_image * out = cpl_image_new(nx, ny, CPL_TYPE_FLOAT_COMPLEX);
float * in_b = cpl_image_get_data_float(in);
float complex * out_b = cpl_image_get_data_float_complex(out);
fftwnd_plan rp = rfftw2d_create_plan(nx, ny, FFTW_FORWARD, FFTW_ESTIMATE);
cpl_image_fill_noise_uniform(in, 0.0, 10.0);
rfftwnd_real_to_complex(rp, 1,
(fftw_real *)in_b, 1, nx * ny,
(fftw_complex *)out_b, 1, nx * ny);
my_frequency_processing(out);
|