~ubuntu-branches/debian/sid/simpleitk/sid

« back to all changes in this revision

Viewing changes to Code/BasicFilters/json/NaryMaximumImageFilter.json

  • Committer: Package Import Robot
  • Author(s): Ghislain Antony Vaillant
  • Date: 2017-11-02 08:49:18 UTC
  • Revision ID: package-import@ubuntu.com-20171102084918-7hs09ih668xq87ej
Tags: upstream-1.0.1
ImportĀ upstreamĀ versionĀ 1.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
  "name" : "NaryMaximumImageFilter",
 
3
  "template_code_filename" : "MultiInputImageFilter",
 
4
  "template_test_filename" : "ImageFilter",
 
5
  "number_of_inputs" : 1,
 
6
  "pixel_types" : "BasicPixelIDTypeList",
 
7
  "members" : [],
 
8
  "tests" : [
 
9
    {
 
10
      "tag" : "default2",
 
11
      "description" : "max of 2 images",
 
12
      "settings" : [],
 
13
      "md5hash" : "00c5a06c3a1b3be415732bd5073450ef",
 
14
      "inputs" : [
 
15
        "Input/Ramp-One-Zero-Float.nrrd",
 
16
        "Input/Ramp-Zero-One-Float.nrrd"
 
17
      ]
 
18
    },
 
19
    {
 
20
      "tag" : "default3",
 
21
      "description" : "max of 3 images",
 
22
      "settings" : [],
 
23
      "md5hash" : "00c5a06c3a1b3be415732bd5073450ef",
 
24
      "inputs" : [
 
25
        "Input/Ramp-One-Zero-Float.nrrd",
 
26
        "Input/Ramp-Zero-One-Float.nrrd",
 
27
        "Input/Ramp-One-Zero-Float.nrrd"
 
28
      ]
 
29
    },
 
30
    {
 
31
      "tag" : "default4",
 
32
      "description" : "max of 4 images",
 
33
      "settings" : [],
 
34
      "md5hash" : "00c5a06c3a1b3be415732bd5073450ef",
 
35
      "inputs" : [
 
36
        "Input/Ramp-One-Zero-Float.nrrd",
 
37
        "Input/Ramp-Zero-One-Float.nrrd",
 
38
        "Input/Ramp-One-Zero-Float.nrrd",
 
39
        "Input/Ramp-One-Zero-Float.nrrd"
 
40
      ]
 
41
    },
 
42
    {
 
43
      "tag" : "default5",
 
44
      "description" : "max of 4 images",
 
45
      "settings" : [],
 
46
      "md5hash" : "00c5a06c3a1b3be415732bd5073450ef",
 
47
      "inputs" : [
 
48
        "Input/Ramp-One-Zero-Float.nrrd",
 
49
        "Input/Ramp-Zero-One-Float.nrrd",
 
50
        "Input/Ramp-One-Zero-Float.nrrd",
 
51
        "Input/Ramp-One-Zero-Float.nrrd",
 
52
        "Input/Ramp-One-Zero-Float.nrrd"
 
53
      ]
 
54
    }
 
55
  ],
 
56
  "briefdescription" : "Computes the pixel-wise maximum of several images.",
 
57
  "detaileddescription" : "This class is templated over the types of the input images and the type of the output image. Numeric conversions (castings) are done by the C++ defaults.\n\nThe pixel type of the output images must have a valid definition of the operator<. This condition is required because internally this filter will perform an operation similar to:\n\n\\code\n* const OutputPixelType query_value = static_cast<OutputPixelType>(pixel_from_input_n);\n\n* if(current_maximum < query_value)\n\n* {\n\n* current_maximum = query_value;\n\n* }\n\n* \n\n\\endcode\n (where current_maximum is also of type OutputPixelType)\n\nfor each of the n input images.\n\nFor example, this filter could be used directly to find a \"maximum projection\" of a series of images, often used in preliminary analysis of time-series data.\n\n\\author Zachary Pincus\n\nThis filter was contributed by Zachary Pincus from the Department of Biochemistry and Program in Biomedical Informatics at Stanford University School of Medicine",
 
58
  "itk_module" : "ITKImageIntensity",
 
59
  "itk_group" : "ImageIntensity"
 
60
}
 
 
b'\\ No newline at end of file'