How to manage the white balance in webcam
On Linux my webcam works fine, but when using artificial lighting the white-balance is too reddish. Color look fine with natural illumination.
Is there a way to calibrate the colors or have some form of auto-adjustment which works?
I used guvcview
to tinker with the settings but haven't managed to find a suitable combination of settings to show natural colors.
camera color-management
bumped to the homepage by Community♦ 13 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
On Linux my webcam works fine, but when using artificial lighting the white-balance is too reddish. Color look fine with natural illumination.
Is there a way to calibrate the colors or have some form of auto-adjustment which works?
I used guvcview
to tinker with the settings but haven't managed to find a suitable combination of settings to show natural colors.
camera color-management
bumped to the homepage by Community♦ 13 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Did you try VLC? It has a lot video related tools.
– baselab
Dec 21 '17 at 11:33
add a comment |
On Linux my webcam works fine, but when using artificial lighting the white-balance is too reddish. Color look fine with natural illumination.
Is there a way to calibrate the colors or have some form of auto-adjustment which works?
I used guvcview
to tinker with the settings but haven't managed to find a suitable combination of settings to show natural colors.
camera color-management
On Linux my webcam works fine, but when using artificial lighting the white-balance is too reddish. Color look fine with natural illumination.
Is there a way to calibrate the colors or have some form of auto-adjustment which works?
I used guvcview
to tinker with the settings but haven't managed to find a suitable combination of settings to show natural colors.
camera color-management
camera color-management
edited Dec 21 '17 at 10:07
SouravGhosh
481311
481311
asked Dec 21 '17 at 9:51
To DoTo Do
465320
465320
bumped to the homepage by Community♦ 13 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 13 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Did you try VLC? It has a lot video related tools.
– baselab
Dec 21 '17 at 11:33
add a comment |
Did you try VLC? It has a lot video related tools.
– baselab
Dec 21 '17 at 11:33
Did you try VLC? It has a lot video related tools.
– baselab
Dec 21 '17 at 11:33
Did you try VLC? It has a lot video related tools.
– baselab
Dec 21 '17 at 11:33
add a comment |
1 Answer
1
active
oldest
votes
At least on my webcam, the v4l2-ctl -l
command shows two settings related to white balance:
# v4l2-ctl -l
[...]
white_balance_temperature_auto (bool) : default=1 value=1
[...]
white_balance_temperature (int) : min=2800 max=6500 step=1 default=4000 value=4000 flags=inactive
[...]
I must set the white_balance_temperature_auto
setting to 0 before the white_balance_temperature
setting will have any effect.
# v4l2-ctl -c white_balance_temperature_auto=0
# v4l2-ctl -c white_balance_temperature=3000 # or whatever value you want
Note that the white_balance_temperature
setting controls what the camera assumes the lighting environment to be, so decreasing the value makes the camera assume the ambient light is more reddish, and so it will make the picture more bluish to compensate.
Use the -d
option to use a specific video divice like -d /dev/video0
.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f412214%2fhow-to-manage-the-white-balance-in-webcam%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
At least on my webcam, the v4l2-ctl -l
command shows two settings related to white balance:
# v4l2-ctl -l
[...]
white_balance_temperature_auto (bool) : default=1 value=1
[...]
white_balance_temperature (int) : min=2800 max=6500 step=1 default=4000 value=4000 flags=inactive
[...]
I must set the white_balance_temperature_auto
setting to 0 before the white_balance_temperature
setting will have any effect.
# v4l2-ctl -c white_balance_temperature_auto=0
# v4l2-ctl -c white_balance_temperature=3000 # or whatever value you want
Note that the white_balance_temperature
setting controls what the camera assumes the lighting environment to be, so decreasing the value makes the camera assume the ambient light is more reddish, and so it will make the picture more bluish to compensate.
Use the -d
option to use a specific video divice like -d /dev/video0
.
add a comment |
At least on my webcam, the v4l2-ctl -l
command shows two settings related to white balance:
# v4l2-ctl -l
[...]
white_balance_temperature_auto (bool) : default=1 value=1
[...]
white_balance_temperature (int) : min=2800 max=6500 step=1 default=4000 value=4000 flags=inactive
[...]
I must set the white_balance_temperature_auto
setting to 0 before the white_balance_temperature
setting will have any effect.
# v4l2-ctl -c white_balance_temperature_auto=0
# v4l2-ctl -c white_balance_temperature=3000 # or whatever value you want
Note that the white_balance_temperature
setting controls what the camera assumes the lighting environment to be, so decreasing the value makes the camera assume the ambient light is more reddish, and so it will make the picture more bluish to compensate.
Use the -d
option to use a specific video divice like -d /dev/video0
.
add a comment |
At least on my webcam, the v4l2-ctl -l
command shows two settings related to white balance:
# v4l2-ctl -l
[...]
white_balance_temperature_auto (bool) : default=1 value=1
[...]
white_balance_temperature (int) : min=2800 max=6500 step=1 default=4000 value=4000 flags=inactive
[...]
I must set the white_balance_temperature_auto
setting to 0 before the white_balance_temperature
setting will have any effect.
# v4l2-ctl -c white_balance_temperature_auto=0
# v4l2-ctl -c white_balance_temperature=3000 # or whatever value you want
Note that the white_balance_temperature
setting controls what the camera assumes the lighting environment to be, so decreasing the value makes the camera assume the ambient light is more reddish, and so it will make the picture more bluish to compensate.
Use the -d
option to use a specific video divice like -d /dev/video0
.
At least on my webcam, the v4l2-ctl -l
command shows two settings related to white balance:
# v4l2-ctl -l
[...]
white_balance_temperature_auto (bool) : default=1 value=1
[...]
white_balance_temperature (int) : min=2800 max=6500 step=1 default=4000 value=4000 flags=inactive
[...]
I must set the white_balance_temperature_auto
setting to 0 before the white_balance_temperature
setting will have any effect.
# v4l2-ctl -c white_balance_temperature_auto=0
# v4l2-ctl -c white_balance_temperature=3000 # or whatever value you want
Note that the white_balance_temperature
setting controls what the camera assumes the lighting environment to be, so decreasing the value makes the camera assume the ambient light is more reddish, and so it will make the picture more bluish to compensate.
Use the -d
option to use a specific video divice like -d /dev/video0
.
edited Mar 30 '18 at 18:56
Boltgolt
31
31
answered Dec 21 '17 at 11:51
telcoMtelcoM
16.2k12144
16.2k12144
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f412214%2fhow-to-manage-the-white-balance-in-webcam%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you try VLC? It has a lot video related tools.
– baselab
Dec 21 '17 at 11:33