Mercurial > hg > octave-image
annotate NEWS @ 540:5a6afea737df
mat2gray: big rewrite, function seems to not be working for several octave releases. Also should now be completely compatible with matlab
author | carandraug |
---|---|
date | Tue, 13 Mar 2012 18:08:40 +0000 |
parents | 154ffb5d4efe |
children | c47fa2969872 |
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 | |
524 | 9 imabsdiff |
515 | 10 imadd |
504 | 11 imbothat |
520 | 12 imdivide |
526 | 13 imlincomb |
520 | 14 immultiply |
518 | 15 imsubtract |
504 | 16 iptcheckconn |
17 iptcheckmap | |
18 iptchecknargin | |
19 iptcheckstrs | |
20 iptnum2ordinal | |
528
636b9e92019c
normxcorr2: new function is wrapper for xcorr2 from signal package
carandraug
parents:
526
diff
changeset
|
21 normxcorr2 |
533
154ffb5d4efe
wavelength: new function to image package. Contributed by William Krekeler <WKrekeler@cleanearthtech.com>
carandraug
parents:
528
diff
changeset
|
22 wavelength2rgb |
504 | 23 |
24 ** The following functions have been deprecated in previous releases | |
25 of the image package and have now been removed: | |
26 | |
27 imginfo | |
28 | |
29 ** The following functions have been deprecated (see their help text | |
30 for the recommended alternatives): | |
31 | |
515 | 32 blkproc |
504 | 33 dilate |
34 erode | |
35 | |
36 ** With the new function `imbothat' the transform option of | |
37 `imtophat' has been deprecated. | |
38 | |
506
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
39 ** The following functions have had been changed for bug fixes and/or |
504 | 40 improved matlab compatibility |
41 | |
42 bweuler | |
43 imhist | |
44 conndef | |
506
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
45 isbw |
512 | 46 isgray |
47 isrgb | |
48 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
|
49 mat2gray |
506
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
50 |
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
51 ** `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
|
52 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
|
53 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
|
54 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
|
55 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
|
56 issued since this will deprecated later. |
512 | 57 |
58 ** `isrgb' now returns false for logical matrix. |