-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathProstateSegmenter.json
83 lines (83 loc) · 2.33 KB
/
ProstateSegmenter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "Prostate Gland Segmenter",
"number_of_inputs": 1,
"task": "Segmentation.",
"organ": "Prostate",
"modality": "MRI",
"train_test_data_details": "The model is trained on pelvic MRI scans of a 3T machine without use of an Endorectal Coil.",
"briefdescription": "Whole-gland prostate segmentation in pelvic Axial T2-W MRI scans.",
"detaileddescription": "",
"website": "",
"citation": "",
"version": "0.1",
"docker": {
"dockerhub_repository": "deepinfer/prostate",
"digest": "sha256:4b2b97f0c7ce6021a67dd3bb864e5116bc55a8c73cbb35daaa78c5e0638bf27d",
"size": "6.77 GB"
},
"model_name": "prostate-segmenter",
"data_path": "/data",
"members": [
{
"name": "Domain",
"type": "enum",
"enum": [
"BWH_WITH_ERC",
"BWH_WITHOUT_ERC",
"PROMISE12"
],
"detaileddescriptionSet": "Select the model that will be used for inference.\n",
"iotype": "parameter"
},
{
"name": "ProcessingType",
"type": "enum",
"enum": [
"Fast",
"Accurate"
],
"detaileddescriptionSet": "Accurate model uses more models to compute the segmentation while the fast model only uses one model.\n",
"iotype": "parameter"
},
{
"name": "InferenceType",
"type": "enum",
"enum": [
"Single",
"Ensemble"
],
"detaileddescriptionSet": "Accurate model uses more models to compute the segmentation while the fast model only uses one model.\n",
"iotype": "parameter"
},
{
"name": "InputVolume",
"type": "volume",
"iotype": "input",
"voltype": "ScalarVolume",
"detaileddescriptionSet": "Axial T2-W Prostate MRI.\n",
"default": "std::vector<unsigned int>(3, 64)",
"itk_type": "typename FilterType::SizeType"
},
{
"name": "OutputLabel",
"type": "volume",
"iotype": "output",
"voltype": "LabelMap",
"detaileddescriptionSet": "Output labelmap for the segmentation results.\n",
"default": "std::vector<unsigned int>(3, 64)",
"itk_type": "typename FilterType::SizeType"
},
{
"name": "OutputSmoothing",
"type": "bool",
"default": "false",
"iotype": "parameter"
},
{
"name": "verbose",
"type": "bool",
"default": "false",
"iotype": "parameter"
}
]
}