Open
Conversation
d3121d7 to
bd34568
Compare
Author
|
I made the IDCT functions generic. I think for the other functions we could do the same, but i am not sure how much generic usage you're a fan of |
bd34568 to
f8bb422
Compare
d6271e9 to
71206b4
Compare
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.
This builds on #352
This adds support for process 4 of the JPEG specification (12-bit support). The decoding routines are similar to the existing 8-bit decoding routines, however i made the bitdepth a generic parameter. In theory everything in
mcu_ext.rscould be applied to the functions inmcu.rsand then we could remove the duplicate codeFor testing i added some publicly available DICOM files, provided by the standard committe. These files are publicly available here: ftp://medical.nema.org/MEDICAL/Dicom/DataSets/WG04/
It contains both extended jpeg (JPLY) files and lossless jpeg (JPLSS)
To access the pixeldata from these files i added https://github.com/Enet4/dicom-rs as a dev dependency