python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Resize the Depth of CT data in Python
I have multiple CT datasets in Dicom format all with varying number of slices or 2D CT images.
Example:
Dataset 1 Shape: (512 x 512) x 100
Dataset 2 Shape: (512 x 512) x 130
Dataset 3 Shape: (512 x 51...
user9209723
Votes: 0
Answers: 1
Pydicom private tag written as "UN"
I am adding some private tags with VR "LO" to an already existing DICOM file. With something like:
dcm.add_new("70d12000", "LO", "Private tag content")
Getting ...
Ana Jimenez
Votes: 0
Answers: 1
trying to show image of a mammograms with pydicom
plt.imshow(datasetP2.pixel_array, cmap=plt.cm.bone)
tried this code on a file provided to me and ended up with this error
---------------------------------------------------------------------------
At...
RoboEagle
Votes: 0
Answers: 2
Stacking multiple Dicom series for a same patient
I have a a sereies of Dicom images for each patient and I would like to stack them and save them as one Volumetric Dicom image, Any idea of how to do that?
from glob import glob
import dcmstack
import...
Mrmr
Votes: 0
Answers: 0