Mercurial > hg > octave-image
annotate NEWS @ 526:5750f9aa690a
imlincomb: new function
author | carandraug |
---|---|
date | Sun, 11 Dec 2011 03:30:40 +0000 |
parents | 25b2d4cf36bf |
children | 636b9e92019c |
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 | |
21 | |
22 ** The following functions have been deprecated in previous releases | |
23 of the image package and have now been removed: | |
24 | |
25 imginfo | |
26 | |
27 ** The following functions have been deprecated (see their help text | |
28 for the recommended alternatives): | |
29 | |
515 | 30 blkproc |
504 | 31 dilate |
32 erode | |
33 | |
34 ** With the new function `imbothat' the transform option of | |
35 `imtophat' has been deprecated. | |
36 | |
506
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
37 ** The following functions have had been changed for bug fixes and/or |
504 | 38 improved matlab compatibility |
39 | |
40 bweuler | |
41 imhist | |
42 conndef | |
506
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
43 isbw |
512 | 44 isgray |
45 isrgb | |
46 isind | |
506
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
47 |
3b5c14635553
image: added important note on NEWS about new behaviour of isbw
carandraug
parents:
504
diff
changeset
|
48 ** `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
|
49 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
|
50 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
|
51 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
|
52 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
|
53 issued since this will deprecated later. |
512 | 54 |
55 ** `isrgb' now returns false for logical matrix. |