| 40 | } |
| 41 | |
| 42 | bool SegmentationSink::ReadyToRun() |
| 43 | { |
| 44 | Image::Pointer image; |
| 45 | GetPointerParameter("Input", image); |
| 46 | |
| 47 | DataNode::Pointer groupNode; |
| 48 | GetPointerParameter("Group node", groupNode); |
| 49 | |
| 50 | return image.IsNotNull() && groupNode.IsNotNull(); |
| 51 | } |
| 52 | |
| 53 | bool SegmentationSink::ThreadedUpdateFunction() { return true; } |
| 54 | /// to be called by subclasses when they want to insert some resulting object (binary image, surface, ...) into the |
nothing calls this directly
no test coverage detected