Replies: 3 comments
|
Hi @mpsampat, it seems there also have a I hope it helps, thanks! |
|
thanks all now we can check the list of transforms as follows:preprocessing.transforms |
|
Hi @mpsampat, it seems there also have a I hope it helps, thanks! |
|
thanks all now we can check the list of transforms as follows:preprocessing.transforms |
Uh oh!
There was an error while loading. Please reload this page.
Hi All!
i am trying to convert whole body ct segmentation bundle into a monai deploy MAP.
I dont want to use the MONAIBundleInferenceOperator since
we have a very strong preference for monai deploy MAP over bundles.
I noticed the pre-processing transforms in train.json and inference.json for whole body ct segmentation bundle do not match.
Inference.json has both:
{
"target": "NormalizeIntensityd",
"keys": "image",
"nonzero": true
},
{
"target": "ScaleIntensityd",
"keys": "image",
"minv": -1.0,
"maxv": 1.0
}
while train.json has NormalizeIntensityd but not ScaleIntensityd
{
"target": "NormalizeIntensityd",
"keys": "image",
"nonzero": true
},
Could someone please check it and let me know ?
I can then create an operator for whole body ct segmentation and submit it to monai deploy app github
All reactions