
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
A viewer to scroll through slices of 2D, 3D and 4D medical data sets (CT, PET, MRI...)
Supports files than can be read by SimpleITK:
And probably some more types as long as they are supported by the SimpleITK file reader.
In addition there is support for reading folders with dicom data. Sorting dicom data into 3D volume is tricky and may depend on modality, vendor and model of the imaging device. Basic support is offered that works well with CT, PET and MRI. For Siemens PET the PET data is read in SUV.
A second image can be loaded and is displayed as fusion on top of the first. Works well with PET/CT and PET/MRI data.
##Usage
pip install simple-slice-viewer
simple-slice-viewer
simple-slice-viewer ct.nii
simple-slice-viewer ct.nii --fusion pet.nii
or use ssv as shorthand: ssv ssv ct.nii ssv ct.nii --fusion pet.nii ssv --image ct.nii --fusion pet.nii
In Python images should be read to SimpleITK Image objects first.
import simple_slice_viewer as ssv
import SimpleITK as sikt
image = sitk.ReadImage('ct.nii')
fusion = sitk.ReadImage('pet.nii')
ssv.display(image=image, fusion=fusion)
To display a numpy array convert it to SimpleITK first
import SimpleITK as sitk
import simple_slice_viewer as ssv
image = sitk.GetImageFromArray(np_array)
ssv.display(image)
FAQs
Simple slice viewer for Simple ITK images
We found that simple-slice-viewer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.