Mercurial > hg > octave-image
annotate NEWS @ 563:d2a6dc5e921e
tiff_tag_read: deal with multiple tag and IFD beyond the first and improved documentation
author | carandraug |
---|---|
date | Wed, 18 Apr 2012 20:56:52 +0000 |
parents | 36627778a40e |
children | 7db61a0a2632 |
rev | line source |
---|---|
504 | 1 Summary of important user-visible changes for image 1.1.0: |
2 ------------------------------------------------------------------- | |
3 | |
4 ** The following functions are new: | |
5 | |
515 | 6 blockproc |
504 | 7 bwlabeln |
8 getrangefromclass | |
554
18070036aca2
im2int16: new function for image package and updated list of functinos on seealso help text
carandraug
parents:
553
diff
changeset
|
9 im2int16 |
553 | 10 im2single |
524 | 11 imabsdiff |
515 | 12 imadd |
504 | 13 imbothat |
520 | 14 imdivide |
526 | 15 imlincomb |
520 | 16 immultiply |
518 | 17 imsubtract |
504 | 18 iptcheckconn |
19 iptcheckmap | |
20 iptchecknargin | |
21 iptcheckstrs | |
22 iptnum2ordinal | |
543 | 23 iscolormap |
528
636b9e92019c
normxcorr2: new function is wrapper for xcorr2 from signal package
carandraug
parents:
526
diff
changeset
|
24 normxcorr2 |
533
154ffb5d4efe
wavelength: new function to image package. Contributed by William Krekeler <WKrekeler@cleanearthtech.com>
carandraug
parents:
528
diff
changeset
|
25 wavelength2rgb |
504 | 26 |
27 ** The following functions have been deprecated in previous releases | |
28 of the image package and have now been removed: | |
29 | |
30 imginfo | |
31 | |
32 ** The following functions have been deprecated (see their help text | |
33 for the recommended alternatives): | |
34 | |
515 | 35 blkproc |
504 | 36 dilate |
37 erode | |
38 | |
39 ** With the new function `imbothat' the transform option of | |
40 `imtophat' has been deprecated. | |
41 | |
506
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
42 ** The following functions have had been changed for bug fixes and/or |
504 | 43 improved matlab compatibility |
44 | |
45 bweuler | |
46 imhist | |
47 conndef | |
545
23a7bdae105c
im2double: added support for binary images (patch by Martin Helm <martin@mhelm.de>)
carandraug
parents:
543
diff
changeset
|
48 im2double |
552
30f0a2a06f02
im2uint8: matlab compatibility and support for indexed images
carandraug
parents:
551
diff
changeset
|
49 im2uint8 |
551
26f74317f196
im2uint16: matlab compatibility and support for indexed images
carandraug
parents:
545
diff
changeset
|
50 im2uint16 |
506
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
51 isbw |
512 | 52 isgray |
53 isrgb | |
54 isind | |
540
5a6afea737df
mat2gray: big rewrite, function seems to not be working for several octave releases. Also should now be completely compatible with matlab
carandraug
parents:
533
diff
changeset
|
55 mat2gray |
506
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
56 |
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
57 ** `isbw' now defines a black-and-white image as a binary non-sparse |
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
58 matrix. This is compatible with matlab. To use the old behaviour, |
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
59 use the new option for the call "isbw (img, "non-logical"). |
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
60 For backwards compatibility, if a non-logical matrix of 0 and 1 is |
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
61 used as input, `isbw' will still return true but a warning will be |
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
62 issued since this will deprecated later. |
512 | 63 |
64 ** `isrgb' now returns false for logical matrix. | |
562 | 65 |
563
d2a6dc5e921e
tiff_tag_read: deal with multiple tag and IFD beyond the first and improved documentation
carandraug
parents:
562
diff
changeset
|
66 ** `tiff_tag_read' had several bug fixes and can now check IFDs beyond |
d2a6dc5e921e
tiff_tag_read: deal with multiple tag and IFD beyond the first and improved documentation
carandraug
parents:
562
diff
changeset
|
67 the first. It can also accept mutiple tag values and IFDs simultaneously |
d2a6dc5e921e
tiff_tag_read: deal with multiple tag and IFD beyond the first and improved documentation
carandraug
parents:
562
diff
changeset
|
68 and return a matrix of the values found. Its documentation has been |
d2a6dc5e921e
tiff_tag_read: deal with multiple tag and IFD beyond the first and improved documentation
carandraug
parents:
562
diff
changeset
|
69 expanded (as well as an explanation of TIFF structure on the source) |
d2a6dc5e921e
tiff_tag_read: deal with multiple tag and IFD beyond the first and improved documentation
carandraug
parents:
562
diff
changeset
|
70 |
562 | 71 ** Package is no longer automatically loaded. |