-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve type coercion somehow #2
Comments
and returns a |
I think what I meant when I filed this issue is that the pyjnius objects are statically typed like Java. So e.g. if a method return a That said, my example above does not illustrate this issue well, since as @hanslovsky points out, the |
I've been trying to write a helper function for saving a numpy array through ImageJ, and I think I've also hit upon this issue. The Casting it to I was able to save an ImgPlus the |
@mpinkert You can use the from skimage import data
coins = data.coins()
java_coins = ij.py.to_java(coins)
dataset = ij.dataset().create(java_coins)
ij.scifio().datasetIO().save(dataset, '/Users/curtis/Desktop/coins.png') |
@ctrueden I just tested that out - I saw two possible pain points. 1.) Python generated numpy arrays hit pixel type problems. For example, trying to pass a double gives big errors. With tifs, ImageJ cannot open the result because from pathlib import Path
img = numpy.zeros([512, 512])
jimg = ij.py.to_java(img)
jdataset = ij.dataset().create(jimg)
jpath = str(Path(Path.home(), 'documents', 'test.tif'))
ij.io().save(jdataset, jpath) You can get around this by specifying an appropriate datatype using 2.) Color images are not converted properly. Numpy is normally reverse indexed, e.g. [z, y, x]. However, for RGB it is [y, x, C]. Turning it into a dataset makes it save as a 3 column / x row / y slice image. Fixing the index order is easy, but the image is still saved as a 3D image instead of RGB. Is there an easy way to specify that the dataset should be saved as RGB? from pathlib import Path
from skimage import io
url = 'https://github.com/hanslovsky/imglyb-examples/raw/master/resources/butterfly_small.jpg'
img = io.imread(url)
jimg = ij.py.to_java(img)
jdataset = ij.dataset().create(jimg)
jpath = str(Path(Path.home(), 'documents', 'test.tif'))
ij.io().save(jdataset, jpath) |
Four things being discussed here:
|
The text was updated successfully, but these errors were encountered: