-
Notifications
You must be signed in to change notification settings - Fork 62
WIP: Add custom pydicom decoder using nvimgcodec #569
New issue
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
Conversation
Signed-off-by: M Q <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This WIP pull request adds a custom pydicom decoder plugin using NVIDIA's nvImageCodec library to accelerate DICOM image decompression for various JPEG and JPEG2000 transfer syntaxes.
Key Changes:
- Implements a new decoder plugin in
decoder_nvimgcodec.pysupporting 9 DICOM transfer syntaxes (JPEG Baseline, Extended, Lossless, JPEG2000, and HTJ2K variants) - Integrates the decoder into
DICOMSeriesToVolumeOperatorto automatically register the plugin during initialization - Exposes the decoder module through the operators package interface
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 8 comments.
| File | Description |
|---|---|
monai/deploy/operators/decoder_nvimgcodec.py |
New decoder plugin implementation with GPU-accelerated DICOM decompression using nvImageCodec, including registration logic and pydicom integration |
monai/deploy/operators/dicom_series_to_volume_operator.py |
Adds automatic registration of nvImageCodec decoder plugin in operator initialization |
monai/deploy/operators/__init__.py |
Exports the new nvimgcodec_handler module and adds it to all for public API |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: M Q <[email protected]>
Signed-off-by: M Q <[email protected]>
Signed-off-by: M Q <[email protected]>
Signed-off-by: M Q <[email protected]>
|



This WIP pull request adds a custom pydicom decoder plugin using NVIDIA's nvImageCodec library to accelerate DICOM image decompression for various JPEG and JPEG2000 transfer syntaxes.
Key Changes: