-
Notifications
You must be signed in to change notification settings - Fork 4
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
0 to 1.0 float images not saved correctly #1
Comments
Oh, the initial version is hardcode. I simply use the "imwrite" to save image not rather read the image data through the python debugger. That means your img must be a correctly image for "imwrite". Maybe a simply workaround is we can customize the save function name if the function satisfies the save function signature "new_name(filenameTosave, variableTosave)", then we can define a custom save function in python to save correctly. Do you think so? |
I would like to help, but can you explain me how can I run this in vs code?
|
Okay I fixed the problem. It was in webpack.config.js file, line 11: |
Hi, I have merged your fix to 0.0.2. |
Hey, I have been searching for something like this extension, great work.

There is a bug when the image is in range 0..1 floats, it is not saved correctly.
There should probably be some checking: if img.dtype = np.float32 or np.float64 then img * 255.0
The text was updated successfully, but these errors were encountered: