From: <car...@us...> - 2011-12-05 01:17:01
|
Revision: 9265 http://octave.svn.sourceforge.net/octave/?rev=9265&view=rev Author: carandraug Date: 2011-12-05 01:16:55 +0000 (Mon, 05 Dec 2011) Log Message: ----------- dilate and erode: added warning about being deprecated on their help text Modified Paths: -------------- trunk/octave-forge/main/image/inst/dilate.m trunk/octave-forge/main/image/inst/erode.m Modified: trunk/octave-forge/main/image/inst/dilate.m =================================================================== --- trunk/octave-forge/main/image/inst/dilate.m 2011-12-05 01:12:42 UTC (rev 9264) +++ trunk/octave-forge/main/image/inst/dilate.m 2011-12-05 01:16:55 UTC (rev 9265) @@ -19,6 +19,10 @@ ## @deftypefnx {Function File} {@var{BW2} = } dilate (@var{BW1},@var{SE},...,@var{n}) ## Perform a dilation morphological operation on a binary image. ## +## @emph{warning}: @code{dilate} has been deprecated in favor of +## @code{imdilate}. This function will be removed from future versions of the +## 'image' package". +## ## BW2 = dilate(BW1, SE) returns a binary image with the result of a dilation ## operation on @var{BW1} using neighbour mask @var{SE}. ## Modified: trunk/octave-forge/main/image/inst/erode.m =================================================================== --- trunk/octave-forge/main/image/inst/erode.m 2011-12-05 01:12:42 UTC (rev 9264) +++ trunk/octave-forge/main/image/inst/erode.m 2011-12-05 01:16:55 UTC (rev 9265) @@ -19,6 +19,10 @@ ## @deftypefnx {Function File} {@var{BW2} = } erode (@var{BW1},@var{SE},...,@var{n}) ## Perform an erosion morphological operation on a binary image. ## +## @emph{warning}: @code{erode} has been deprecated in favor of +## @code{imerode}. This function will be removed from future versions of the +## 'image' package". +## ## BW2 = erosion(BW1, SE) returns a binary image with the result of an erosion ## operation on @var{BW1} using neighbour mask @var{SE}. ## This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |