What's the best color space to preserve image naturalness?

Discuss digital image processing techniques and algorithms. We encourage its application to ImageMagick but you can discuss any software solutions here.
Post Reply
life24
Posts: 22
Joined: 2016-02-19T00:31:25-07:00
Authentication code: 1151

What's the best color space to preserve image naturalness?

Post by life24 »

Hello,
What's the best color space to preserve image naturalness?
Thanks
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: What's the best color space to preserve image naturalness?

Post by fmw42 »

Please define image naturalness? Compare to what?
life24
Posts: 22
Joined: 2016-02-19T00:31:25-07:00
Authentication code: 1151

Re: What's the best color space to preserve image naturalness?

Post by life24 »

fmw42 wrote:Please define image naturalness? Compare to what?
Thank you for your reply,
For example: HE method can leads unnatural image. but i need color space , not a enhancement method.
What's the best color space to preserve image naturalness? RGB? HSV? or .... ?

Image
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: What's the best color space to preserve image naturalness?

Post by fmw42 »

Colorspace and mean brightness are quite different concepts. What processing are you expecting to do where you would like to choose the best colorspace. See http://www.imagemagick.org/Usage/filter/ and http://www.imagemagick.org/Usage/filter/nicolas/
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: What's the best color space to preserve image naturalness?

Post by snibgo »

Your question is too vague for an answer.

Computer screens display images with red, green and blue channels. So the output colorspace needs those channels. But processing can be done in any colorspace, according to the requirement. For example:

- To adjust the image brightness, we can convert to a colorspace with a lightness channel, make the adjustment, and convert back to RGB/sRGB. The other two channels of the chosen colorspace will be unchanged.

- To adjust the image saturation, we can convert to a colorspace with a saturation channel, make the adjustment, and convert back to RGB/sRGB. The other two channels of the chosen colorspace will be unchanged.

Many, many other adjustments can be made to an image. I can't see that there is a "best" colorspace that fits them all.
snibgo's IM pages: im.snibgo.com
henrywho
Posts: 188
Joined: 2011-08-17T06:46:40-07:00
Authentication code: 8675308

Re: What's the best color space to preserve image naturalness?

Post by henrywho »

I presume that you are talking about digitized images.

The best way to preserve a digitized image is to leave it in the original format untouched.

If you will be performing different operations on the image, the answer depends on the tool(s) you will be using.
Post Reply