Search found 7 matches
- 2016-11-13T18:12:45-07:00
- Forum: Users
- Topic: Image conversion 8b -> 16b without darkening - SOLVED
- Replies: 14
- Views: 13433
Re: Image conversion 8b -> 16b without darkening
OK, here is the solution I am using. First, it was helpful for me to realise that the source of my problems was not really the bit depth of the image, it was the color space. Moving from sRGB to RGB or Grayscale was imposing a transformation that was affecting the image histogram (making the image ...
- 2016-11-13T08:31:10-07:00
- Forum: Users
- Topic: Image conversion 8b -> 16b without darkening - SOLVED
- Replies: 14
- Views: 13433
Re: Image conversion 8b -> 16b without darkening
Solved - will supply details tomorrow.
Cheers,
4Shades
Cheers,
4Shades
- 2016-11-13T03:12:05-07:00
- Forum: Users
- Topic: Image conversion 8b -> 16b without darkening - SOLVED
- Replies: 14
- Views: 13433
Re: Image conversion 8b -> 16b without darkening
oh, ok. Then my problem is that the third-party program won't accept the 16-bit sRGB, so I have to get it into RGB colorspace without darkening it.
- 2016-11-13T02:45:33-07:00
- Forum: Users
- Topic: Image conversion 8b -> 16b without darkening - SOLVED
- Replies: 14
- Views: 13433
Re: Image conversion 8b -> 16b without darkening
The reason I want this is that the final 16-bit image will be fed into a third-party image analysis program to generate a digital terrain; the third party program wants 16-bit grayscale and there are no settings I can tweak to get the program to accept a different encoding.
- 2016-11-13T01:56:31-07:00
- Forum: Users
- Topic: Image conversion 8b -> 16b without darkening - SOLVED
- Replies: 14
- Views: 13433
Re: Image conversion 8b -> 16b without darkening
Sorry to be so obscure! Here are the histograms of the two images: 8-bit http://seowhq.net/meta/IM/im_8b_histo.png 16-bit http://seowhq.net/meta/IM/im_16b_histo.png You can see that in the 16-bit image (linear RGB) the histogram is shifted to the left, making the image look darker than the nonlinear ...
- 2016-11-13T00:15:35-07:00
- Forum: Users
- Topic: Image conversion 8b -> 16b without darkening - SOLVED
- Replies: 14
- Views: 13433
Re: Image conversion 8b -> 16b without darkening
Thanks guys, very helpful, Fred's simple command works. :D Taking up the point about sRGB vs RGB, going from sRGB to RGB tends to darken things. If I did want to convert faithfully to RGB (or Grayscale) I suppose I would have to transform each pixel from sRGB into RGB in such a way as to maintain ...
- 2016-11-12T19:25:25-07:00
- Forum: Users
- Topic: Image conversion 8b -> 16b without darkening - SOLVED
- Replies: 14
- Views: 13433
Image conversion 8b -> 16b without darkening - SOLVED
Hi everyone, I am using ImageMagick v6.8.1-6 in a PHP application (using exec() system calls to run ImageMagick executables) on a Windows platform. One task I am trying to do is take an existing 8-bit sRGB image and convert it to 16-bit RGB. These are always grayscale images, that is R=G=B for each ...