Dicom "CompressionMode" steps?
4 次查看(过去 30 天)
显示 更早的评论
Hi,
For writing the dicom images, matlab offers some methods for compression. For example one is JPEG lossy and JPEG lossless. There are several types of algorithms for encoding the image in the literature.
The basic method for lossy is image=>dct=>Quantization=>RLE or (RLE+DPCM)=>huffman encoding.
And I wonder if the method for lossless jpeg is directly image=>RLE=>Huffman ? (or image=>huffman only?)
Does Matlab uses the same structure for lossy jpeg dicom compression? Please let me know I need help
Thanks in advance
0 个评论
采纳的回答
Walter Roberson
2016-9-1
2 个评论
Walter Roberson
2016-9-2
Digging into the code, I see that the dicomwrite() routines end up calling imwrite() for jpeg lossless and jpeg lossy modes. The "bits" setting is passed in to the imwrite() call.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!