Addison Elliott

Results 56 comments of Addison Elliott

Hate to bring up a dead topic, but I ran into this issue and I wanted to share my thoughts in case it helps someone else. Since there hasn't been...

Yes, that feature is not possible at the moment. A lot of the open issues in this repository are about making the library 'more flexible', or more configurable. The library...

No problem. Of course you can help, that's the beauty of open-source. Go ahead and fork/clone this repository and try experimenting. If you get to a point that you have...

I know this is an extremely old issue, but it caught my attention. Although it would be nice to have an annotation that automatically generates getters/setters for you in an...

This is odd. So the exception UnknownHostException is telling me that the web server is not online. As an additional test, open a command terminal and run: `ping xxx.herokuapp.com` If...

I completely understand that logically, since the iOS app works correctly then the server should be fine. But, can you humor me and do the ping just so we can...

Yeah, you're right about the ping for Heroku. I wasn't aware of this, so that is interesting. The fact that this was working a few days ago is also interesting....

Hm, pretty standard configuration. This is an odd issue. I'm not sure if there is an easy way for me to reproduce this issue and further test it. However, I...

Unless I'm misunderstanding the question, `pynrrd` should read the `oldmin`, `old min`, `oldmax`, and `old max` attributes as `double`'s. See the code here: https://github.com/mhe/pynrrd/blob/master/nrrd/reader.py#L89 As far as I can tell,...

Oh I understand! Are you wanting it scaled between 0.0f and 1.0f? This is essentially what you need then? `(data - oldmin) / (oldmax - oldmin)` If so, do you...