Reputation: 1346
It is possible to extract the patient only from an CT, without mass (without mass where patient was lay down in order to exposed for CT) ? There is something VTK filter that could be used for this task ?
Upvotes: 0
Views: 121
Reputation: 66
There is vtkImageSeedConnectivity which is a basic region growing algorithm in VTK. You'll probably need to preprocess the data before to use it
Upvotes: 1
Reputation: 392
under some conditions it is possible to segment patient object from CT bed based on region growing segmentation. there is no class in VTK for this kind o segmentation. you can try ConnectedThresholdImageFilter in ITK or implement the algorithm yourself.
Upvotes: 1