We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d4ed38 + 08c03be commit f47d7bcCopy full SHA for f47d7bc
docs/code/ImplicitInstantiation.py
@@ -25,7 +25,7 @@
25
ImageType = itk.Image[itk.UC, 2]
26
reader = itk.ImageFileReader[ImageType].New(FileName=input_filename)
27
# Here we specify the filter input explicitly
28
-median = itk.MedianImageFilter.New(reader.GetOutput())
+median = itk.MedianImageFilter.New(Input=reader.GetOutput())
29
# Same as above but shortened. Input does not have to be specified.
30
median = itk.MedianImageFilter.New(reader.GetOutput())
31
# Same as above. .GetOutput() does not have to be specified.
0 commit comments