We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to delete structures of Type "MARKER" from the Structure Set.
Using selector I can find these structures:
var selector = dcm.GetSelector(); var roiTypes = selector.RTROIObservationsSequence.Select(s => s.RTROIInterpretedType_); foreach (var roiType in roiTypes) { if (roiType.Data == "MARKER") { // do sth, preferably delete from dcm / selector } }
How can I delete the structure? I now that the same structure has to be deleted (based on ReferencedROINumber), from:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'd like to delete structures of Type "MARKER" from the Structure Set.
Using selector I can find these structures:
How can I delete the structure?
I now that the same structure has to be deleted (based on ReferencedROINumber), from:
The text was updated successfully, but these errors were encountered: