- For the procedural functions, SimpleITK has custom function names created per image filter that are CamelCase, e.g.
sitk.Medianversus the snake_case version of the corresponding ITK filter, e.g.itk.median_image_filter - Parameters for SimpleITK are often custom positional or camelCase, where parameters for ITK are the
snake_casekeyword arguments that correspond to theSetParameterNamemethods. - SimpleITK supports image filters. ITK’s Pythonic functions are anything that inherits from
itk.ProjectObject, i.e. mesh filters, point set filters, path filters, image filters …
1 Like