Eduardo Pinho

Results 254 comments of Eduardo Pinho

> and everything except a full 6 digit fraction of a second (`FFFFFF`) would be considered a` PartialDateTime` with the > possibility to call` .earliest()` and` .latest()` on the struct...

Hey @jmlaka, thank you for your continued commitment to this! Let's see... > as you suggested, I implemented the Partial[Date,Time,DateTime] structures (parsing, precision, range) and propagated the methods to `primitive.rs`....

Thank you for reaching out, @vsaase. It is true that this project is currently not covering conversions to/from JSON, but it makes sense to have that eventually, potentially as one...

Thank you for reporting. I managed to track down the root of the problem: according to [section 6.2.2 of chapter 5](http://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_6.2.2.html), data sets inside sequences with the value representation UN...

> Is there any way to force dicom-rs to parse in a "best-effort" way, so one can at least extract SIUID and SOP instance UID from the DICOM file? There...

> Hello, > > On trying to open a file with this transfert syntax : 1.2.840.10008.1.2.1 > > ```rust > let obj = open_file(&in_file)?; > ``` > > I get...

There are two key components in this particular interaction: - The standard transfer syntax registry, which is prepared to receive at most a single null character at the end of...

@bastien-solutions I'd probably do it like this: ```rust uid.trim_end_matches(|c| c.is_whitespace() || c == '\0') ``` But certainly, a pull request would be much appreciated!

> No problem, can you give me the authorization to create / push on branch ? That will not be necessary if you [create a pull request from your own...

Hello! Thank you very much for your interest in this project! While it's needless to say that this library isn't quite ready for use yet, I do intend to thrust...