Ziv Yaniv
Ziv Yaniv
Hello @Ivanka07, That is strange. The conversion to list should work with the versions you are using. On OSX, Python 3.8.5, SimpleITK 2.1.0 the following works, please try: ``` import...
Also, a not so refined example in the *Streaming Image IO* section of the [Image Details Jupyter notebook](https://github.com/InsightSoftwareConsortium/SimpleITK-Notebooks/blob/master/Python/03_Image_Details.ipynb), illustrates the concept but not ideal code.
Hello @junqiangchen, The SimpleITK version is strange (we are at 1.2.0), please let us know what you get when running `import SimpleITK as sitk; print(sitk.Version())`?
I was finally able to reproduce the issue on windows 10 Python 3.7. First I had to [change settings in windows](https://www.digitalcitizen.life/changing-display-language-used-non-unicode-programs) so that it displayed Chinese characters correctly . I...
Shouldn't the behavior be uniform across platforms? It works correctly on OSX and fails on Win-10.
@seanm, I guess @nicktasios has a real image but here's a toy one: ``` import SimpleITK as sitk image = sitk.Image([64,64,64,1], sitk.sitkFloat32) sitk.WriteImage(image, 'temp.nii.gz') ```
Hi @dzenanz, Mathieu asked that this bug be assigned to him and it looks like I can't assign issues. Please assign, thanks.
Hello @iamwangxi, That is outside of the users control. The underlying DICOM writer receives this information from the actual image spacings, so it is not something you can change.
Hello @dyollb, Per the discourse discussion @gdevenyi pointed to, the issue is that you can't combine the global affine transformations and local deformations to yield a global affine. If you...
Hello @dyollb, I have created a [PR](https://github.com/InsightSoftwareConsortium/SimpleITK-Notebooks/pull/385/files) with you as co-author, updating the composite2affine function in the Transformations notebook. Please confirm that you are ok with being listed as co-author,...