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

« back to all changes in this revision

Viewing changes to Code/BasicFilters/json/ConnectedComponentImageFilter.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" : "ConnectedComponentImageFilter",
 
3
  "template_code_filename" : "ImageFilter",
 
4
  "template_test_filename" : "ImageFilter",
 
5
  "number_of_inputs" : 1,
 
6
  "doc" : "",
 
7
  "pixel_types" : "IntegerPixelIDTypeList",
 
8
  "output_pixel_type" : "uint32_t",
 
9
  "members" : [
 
10
    {
 
11
      "name" : "FullyConnected",
 
12
      "type" : "bool",
 
13
      "default" : "false",
 
14
      "doc" : "",
 
15
      "briefdescriptionSet" : "",
 
16
      "detaileddescriptionSet" : "Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.",
 
17
      "briefdescriptionGet" : "",
 
18
      "detaileddescriptionGet" : "Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn."
 
19
    }
 
20
  ],
 
21
  "measurements" : [
 
22
    {
 
23
      "name" : "ObjectCount",
 
24
      "type" : "uint32_t",
 
25
      "default" : "0u",
 
26
      "briefdescriptionGet" : "",
 
27
      "detaileddescriptionGet" : ""
 
28
    }
 
29
  ],
 
30
  "custom_methods" : [],
 
31
  "tests" : [
 
32
    {
 
33
      "tag" : "default",
 
34
      "description" : "2D",
 
35
      "settings" : [],
 
36
      "measurements_results" : [
 
37
        {
 
38
          "name" : "ObjectCount",
 
39
          "value" : "23u"
 
40
        }
 
41
      ],
 
42
      "md5hash" : "548f5184428db10d93e3bf377dee5253",
 
43
      "inputs" : [
 
44
        "Input/WhiteDots.png"
 
45
      ]
 
46
    },
 
47
    {
 
48
      "tag" : "fullyconnected",
 
49
      "description" : "2D",
 
50
      "settings" : [
 
51
        {
 
52
          "parameter" : "FullyConnected",
 
53
          "value" : "true",
 
54
          "python_value" : "True",
 
55
          "R_value" : "TRUE"
 
56
        }
 
57
      ],
 
58
      "md5hash" : "e40b7cdfc1b34ae2e6b13660d626cc29",
 
59
      "inputs" : [
 
60
        "Input/WhiteDots.png"
 
61
      ]
 
62
    }
 
63
  ],
 
64
  "briefdescription" : "Label the objects in a binary image.",
 
65
  "detaileddescription" : "ConnectedComponentImageFilter labels the objects in a binary image (non-zero pixels are considered to be objects, zero-valued pixels are considered to be background). Each distinct object is assigned a unique label. The filter experiments with some improvements to the existing implementation, and is based on run length encoding along raster lines. The final object labels start with 1 and are consecutive. Objects that are reached earlier by a raster order scan have a lower label. This is different to the behaviour of the original connected component image filter which did not produce consecutive labels or impose any particular ordering.\n\nAfter the filter is executed, ObjectCount holds the number of connected components.\n\n\\see ImageToImageFilter \n\n\\par Wiki Examples:\n\n\\li All Examples \n\n\\li Label connected components in a binary image",
 
66
  "itk_module" : "ITKConnectedComponents",
 
67
  "itk_group" : "ConnectedComponents"
 
68
}
 
 
b'\\ No newline at end of file'