Flaviu_
Flaviu_

Reputation: 1346

Extract patient from an CT

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

Answers (2)

Simon Esneault
Simon Esneault

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

Afshin
Afshin

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

Related Questions