From: Sylwester Nawrocki <snjw23@gmail.com>
To: Sakari Ailus <sakari.ailus@iki.fi>
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>,
linux-media@vger.kernel.org, m.szyprowski@samsung.com,
riverful.kim@samsung.com, sw0312.kim@samsung.com,
Kyungmin Park <kyungmin.park@samsung.com>
Subject: Re: [PATCH 03/23] V4L: Add an extended camera white balance control
Date: Tue, 15 May 2012 23:28:03 +0200 [thread overview]
Message-ID: <4FB2CA63.2000605@gmail.com> (raw)
In-Reply-To: <20120514000234.GG3373@valkosipuli.retiisi.org.uk>
Hi Sakari,
On 05/14/2012 02:02 AM, Sakari Ailus wrote:
> Hi Sylwester,
>
> Thanks for the patch. I noticed your pull req; I hope you could take into
> account a few more comments. :)
Thank you for your comments, I'll try to come up with a fix up patch.
> On Thu, May 10, 2012 at 12:30:38PM +0200, Sylwester Nawrocki wrote:
>> This patch adds V4L2_CID_AUTO_N_PRESET_WHITE_BALANCE control which is
>> an extended version of the V4L2_CID_AUTO_WHITE_BALANCE control,
>> including white balance presets. The following presets are defined:
>>
>> - V4L2_WHITE_BALANCE_INCANDESCENT,
>> - V4L2_WHITE_BALANCE_FLUORESCENT,
>> - V4L2_WHITE_BALANCE_FLUORESCENT_H,
>> - V4L2_WHITE_BALANCE_HORIZON,
>> - V4L2_WHITE_BALANCE_DAYLIGHT,
>> - V4L2_WHITE_BALANCE_FLASH,
>> - V4L2_WHITE_BALANCE_CLOUDY,
>> - V4L2_WHITE_BALANCE_SHADE.
>>
>> Signed-off-by: HeungJun Kim<riverful.kim@samsung.com>
>> Signed-off-by: Sylwester Nawrocki<s.nawrocki@samsung.com>
>> Signed-off-by: Kyungmin Park<kyungmin.park@samsung.com>
>> Acked-by: Hans de Goede<hdegoede@redhat.com>
>> ---
>> Documentation/DocBook/media/v4l/controls.xml | 70 ++++++++++++++++++++++++++
>> drivers/media/video/v4l2-ctrls.c | 17 +++++++
>> include/linux/videodev2.h | 14 ++++++
>> 3 files changed, 101 insertions(+)
>>
>> diff --git a/Documentation/DocBook/media/v4l/controls.xml b/Documentation/DocBook/media/v4l/controls.xml
>> index 40e6485..85d1ca0 100644
>> --- a/Documentation/DocBook/media/v4l/controls.xml
>> +++ b/Documentation/DocBook/media/v4l/controls.xml
>> @@ -3022,6 +3022,76 @@ camera sensor on or off, or specify its strength. Such band-stop filters can
>> be used, for example, to filter out the fluorescent light component.</entry>
>> </row>
>> <row><entry></entry></row>
>> +
>> + <row id="v4l2-auto-n-preset-white-balance">
>> + <entry spanname="id"><constant>V4L2_CID_AUTO_N_PRESET_WHITE_BALANCE</constant> </entry>
>> + <entry>enum v4l2_auto_n_preset_white_balance</entry>
>> + </row><row><entry spanname="descr">Sets white balance to automatic,
>> +manual or a preset. The presets determine color temperature of the light as
>> +a hint to the camera for white balance adjustments resulting in most accurate
>> +color representation. The following white balance presets are listed in order
>> +of increasing color temperature.</entry>
>> + </row>
>> + <row>
>> + <entrytbl spanname="descr" cols="2">
>> + <tbody valign="top">
>> + <row>
>> + <entry><constant>V4L2_WHITE_BALANCE_MANUAL</constant> </entry>
>> + <entry>Manual white balance.</entry>
>> + </row>
>> + <row>
>> + <entry><constant>V4L2_WHITE_BALANCE_AUTO</constant> </entry>
>> + <entry>Automatic white balance adjustments.</entry>
>> + </row>
>> + <row>
>> + <entry><constant>V4L2_WHITE_BALANCE_INCANDESCENT</constant> </entry>
>> + <entry>White balance setting for incandescent (tungsten) lighting.
>> +It generally cools down the colors and corresponds approximately to 2500...3500 K
>> +color temperature range.</entry>
>> + </row>
>> + <row>
>> + <entry><constant>V4L2_WHITE_BALANCE_FLUORESCENT</constant> </entry>
>> + <entry>White balance preset for fluorescent lighting.
>> +It corresponds approximately to 4000...5000 K color temperature.</entry>
>> + </row>
>> + <row>
>> + <entry><constant>V4L2_WHITE_BALANCE_FLUORESCENT_H</constant> </entry>
>> + <entry>With this setting the camera will compensate for
>> +fluorescent H lighting.</entry>
>> + </row>
>
> I don't remember for quite sure if I replied to this already... what's the
> diff between the above two?
No, you didn't, otherwise I would certainly remember that ;)
V4L2_WHITE_BALANCE_FLUORESCENT_H is for newer, daylight calibrated fluorescent
lamps. So this preset will generally cool down the colours less than
V4L2_WHITE_BALANCE_FLUORESCENT. I was even thinking about a separate control
for V4L2_WHITE_BALANCE_FLUORESCENT, since some ISPs have several presets for
fluorescent lighting. I dropped that idea finally though.
> The colour temperature of the fluorescent light depends on the lamp; 2500 K
> is not uncommon here in Finland. It's the spectrum that's different from
> incandescents, not necessarily the colour temperature.
>
>> + <row>
>> + <entry><constant>V4L2_WHITE_BALANCE_HORIZON</constant> </entry>
>> + <entry>White balance setting for horizon daylight.
>> +It corresponds approximately to 5000 K color temperature.</entry>
>> + </row>
>> + <row>
>> + <entry><constant>V4L2_WHITE_BALANCE_DAYLIGHT</constant> </entry>
>> + <entry>White balance preset for daylight (with clear sky).
>> +It corresponds approximately to 5000...6500 K color temperature.</entry>
>> + </row>
>> + <row>
>> + <entry><constant>V4L2_WHITE_BALANCE_FLASH</constant> </entry>
>> + <entry>With this setting the camera will compensate for the flash
>> +light. It slightly warms up the colors and corresponds roughly to 5000...5500 K
>> +color temperature.</entry>
>
> This also depends heavily on the type of the flash.
OK, I'm going to remove this one, and for V4L2_WHITE_BALANCE_FLUORESCENT as well.
I would prefer to keep the remaining ones though.
> I'd just remove the colour temperature from most of these since it looks
> more like assumptions made in a particular system rather than something
> generic.
The colour temperature ranges are mostly rough estimates to give an overview
of what these presets are. I compared multiple information sources when
preparing those colour temperature ranges. So it's obviously not based on
a single system. However since some may give false information, I'm going
to remove them.
Regards,
Sylwester
next prev parent reply other threads:[~2012-05-15 21:28 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-10 10:30 [PATCH v5 00/23] V4L: camera control enhancements Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 01/23] V4L: Add helper function for standard integer menu controls Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 02/23] V4L: Add camera exposure bias control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 03/23] V4L: Add an extended camera white balance control Sylwester Nawrocki
2012-05-14 0:02 ` Sakari Ailus
2012-05-15 21:28 ` Sylwester Nawrocki [this message]
2012-05-16 6:57 ` Sakari Ailus
2012-05-16 9:34 ` Sylwester Nawrocki
2012-05-17 22:37 ` Sakari Ailus
2012-05-15 21:53 ` [PATCH] V4L: DocBook: Improve V4L2_AUTO_N_WHITE_BALANCE control description Sylwester Nawrocki
2012-05-19 20:27 ` [PATCH v3] V4L: DocBook: Improve V4L2_CID_AUTO_N_WHITE_BALANCE " Sylwester Nawrocki
2012-05-15 22:05 ` [PATCH v2] " Sylwester Nawrocki
2012-05-17 22:42 ` Sakari Ailus
2012-05-10 10:30 ` [PATCH 04/23] V4L: Add camera wide dynamic range control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 05/23] V4L: Add camera image stabilization control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 06/23] V4L: Add camera ISO sensitivity controls Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 07/23] V4L: Add camera exposure metering control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 08/23] V4L: Add camera scene mode control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 09/23] V4L: Add camera 3A lock control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 10/23] V4L: Add auto focus targets to the selections API Sylwester Nawrocki
2012-10-29 20:00 ` Sakari Ailus
2012-10-29 22:43 ` Sylwester Nawrocki
2012-11-04 17:29 ` Sakari Ailus
2012-05-10 10:30 ` [PATCH 11/23] V4L: Add auto focus targets to the subdev " Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 12/23] V4L: Add camera auto focus controls Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 13/23] m5mols: Convert macros to inline functions Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 14/23] m5mols: Refactored controls handling Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 15/23] m5mols: Use proper sensor mode for the controls Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 16/23] m5mols: Add ISO sensitivity controls Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 17/23] m5mols: Add auto and preset white balance control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 18/23] m5mols: Add exposure bias control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 19/23] m5mols: Add wide dynamic range control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 20/23] m5mols: Add image stabilization control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 21/23] m5mols: Add exposure metering control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 22/23] m5mols: Add JPEG compression quality control Sylwester Nawrocki
2012-05-10 10:30 ` [PATCH 23/23] m5mols: Add 3A lock control Sylwester Nawrocki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4FB2CA63.2000605@gmail.com \
--to=snjw23@gmail.com \
--cc=kyungmin.park@samsung.com \
--cc=linux-media@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=riverful.kim@samsung.com \
--cc=s.nawrocki@samsung.com \
--cc=sakari.ailus@iki.fi \
--cc=sw0312.kim@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).