Steve Pieper
Steve Pieper
I don't have a strong preference of methods. As long as you are using a 99 coding scheme and publish the meaning somewhere (perhaps in github and include the URL...
Since there are gaps in the segmentation as seen in the sagittal and coronal views, what you see in the axial view looks correct to me. Note that sampling binary...
In general I think it's a great idea to factor out code into reusable packages. @jcfr knows way more about python packaging than I do, but since this is pure...
Thanks for the feedback 👍 Yes, `dcmjs` is a community project with lots of possible uses and very little direct support, so most progress is made when developers need new...
Sorry, I guess that repo is private. Here's the code in question: ``` const dataset = { '00080008': { vr: 'CS', Value: ['DERIVED'] }, '00082112': { vr: 'SQ', Value: [...
@Christian-e-S is this still valid? I'm not familiar with the issue myself.
Okay, this sounds reasonable, but I'm wary to change this code since it's very hard to test for any side effects. Can you create an issue and reference it here...
I'm pretty sure this is inherited from VTK's lower level defaults. It would be good if someone could doublecheck that and see if there's a way to turn it off...
@muratmaga maybe using requests and adding `allow_redirects=True` would work. https://stackoverflow.com/questions/8827545/python-follow-redirects-and-then-download-the-page Otherwise just using the `raw.githubusercontent` url directly makes sense.
I hate embedding that kind of special case logic into the code since it's subject to arbitrary change by github or dropbox or whoever. At least for github another option...