Add voxel-edge contour mode - #141
Merged
Merged
Conversation
qurit-frizi
marked this pull request as ready for review
August 14, 2026 23:39
qurit-frizi
approved these changes
Aug 14, 2026
Collaborator
|
Approved. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds an opt-in voxel-edge contour strategy when converting binary masks to
RTSTRUCT contours.
The existing
voxel_centerbehavior remains the default for backwardcompatibility.
Why
The existing OpenCV contour extraction traces through the centres of boundary
voxels. When another application rasterizes those polygons using voxel-centre
inclusion, the outermost voxel ring can be lost and the resulting ROI appears
inset by half a voxel.
The new mode traces the boundary of the union of foreground voxel squares at
half-integer pixel coordinates. This places contours on the outer voxel edges
and allows consumers using voxel-centre inclusion to reproduce the complete
mask footprint.
Changes
contour_modetoRTStruct.add_roiandROIData.contour_mode="voxel_center"as the default.voxel_edgepolygon tracing with collinear-point removal.patient-space placement.
Validation
pytest -q