diff --git a/Examples/BasicFilters/FrostImageFilter.cxx b/Examples/BasicFilters/FrostImageFilter.cxx index e1aa5d4798fd17bf1d6244f460e74c617c32a9c5..e57a563aa7a06d52525d848229849a730bfb5eec 100644 --- a/Examples/BasicFilters/FrostImageFilter.cxx +++ b/Examples/BasicFilters/FrostImageFilter.cxx @@ -133,19 +133,6 @@ int main(int argc, char * argv[]) filter->SetDeramp(atof(argv[4])); // Software Guide : EndCodeSnippet - // Software Guide : BeginLatex - // - // The filter is executed by invoking the \code{Update()} method. If the - // filter is part of a larger image processing pipeline, calling - // \code{Update()} on a downstream filter will also trigger update of this - // filter. - // - // Software Guide : EndLatex - - // Software Guide : BeginCodeSnippet - filter->Update(); - // Software Guide : EndCodeSnippet - writer->SetFileName(argv[2]); writer->Update(); diff --git a/Examples/BasicFilters/LeeImageFilter.cxx b/Examples/BasicFilters/LeeImageFilter.cxx index 7d491b374d4c646854d8f78d6b8771070a72a040..7d52fefff99c8d6c5ab5e96da7db4f5cb2d04e09 100644 --- a/Examples/BasicFilters/LeeImageFilter.cxx +++ b/Examples/BasicFilters/LeeImageFilter.cxx @@ -160,19 +160,6 @@ int main(int argc, char * argv[]) filter->SetNbLooks(atoi(argv[4])); // Software Guide : EndCodeSnippet - // Software Guide : BeginLatex - // - // The filter is executed by invoking the \code{Update()} method. If the - // filter is part of a larger image processing pipeline, calling - // \code{Update()} on a downstream filter will also trigger update of this - // filter. - // - // Software Guide : EndLatex - - // Software Guide : BeginCodeSnippet - filter->Update(); - // Software Guide : EndCodeSnippet - writer->SetFileName(argv[2]); writer->Update();