How to convert a 4-channel image to 3-channel image in an elegant way?
$begingroup$
I have a 4-channel image (RGBA). I want to reduce its channel count from 4 to 3.
The method I am using currently is to Right click and Save as a .png
file. After that when I Import
it in Mathematica, the channel count is reduced to 3. Is there a more elegant way to do that?
Note: RemoveAlphaChannel
function won't work. Because that will change the appearance of the original image (see the example below).
This is a 4-channel picture from ref / AlphaChannel:
img = Import @ "https://i.stack.imgur.com/XvzDc.png"
This is the 3-channel picture which is what I want:
If I use RemoveAlphaChannel
, I will get this picture instead:
image-processing image
$endgroup$
add a comment |
$begingroup$
I have a 4-channel image (RGBA). I want to reduce its channel count from 4 to 3.
The method I am using currently is to Right click and Save as a .png
file. After that when I Import
it in Mathematica, the channel count is reduced to 3. Is there a more elegant way to do that?
Note: RemoveAlphaChannel
function won't work. Because that will change the appearance of the original image (see the example below).
This is a 4-channel picture from ref / AlphaChannel:
img = Import @ "https://i.stack.imgur.com/XvzDc.png"
This is the 3-channel picture which is what I want:
If I use RemoveAlphaChannel
, I will get this picture instead:
image-processing image
$endgroup$
3
$begingroup$
doesRemoveAlphaChannel[img, White]
not work for you? it does give 3-channel image (ImageChannels@RemoveAlphaChannel[img, White]
is 3).
$endgroup$
– kglr
Jan 24 at 7:26
$begingroup$
@kglr Yes it works for that situation. It's amazing, thank you.
$endgroup$
– Voldikss
Jan 24 at 7:57
add a comment |
$begingroup$
I have a 4-channel image (RGBA). I want to reduce its channel count from 4 to 3.
The method I am using currently is to Right click and Save as a .png
file. After that when I Import
it in Mathematica, the channel count is reduced to 3. Is there a more elegant way to do that?
Note: RemoveAlphaChannel
function won't work. Because that will change the appearance of the original image (see the example below).
This is a 4-channel picture from ref / AlphaChannel:
img = Import @ "https://i.stack.imgur.com/XvzDc.png"
This is the 3-channel picture which is what I want:
If I use RemoveAlphaChannel
, I will get this picture instead:
image-processing image
$endgroup$
I have a 4-channel image (RGBA). I want to reduce its channel count from 4 to 3.
The method I am using currently is to Right click and Save as a .png
file. After that when I Import
it in Mathematica, the channel count is reduced to 3. Is there a more elegant way to do that?
Note: RemoveAlphaChannel
function won't work. Because that will change the appearance of the original image (see the example below).
This is a 4-channel picture from ref / AlphaChannel:
img = Import @ "https://i.stack.imgur.com/XvzDc.png"
This is the 3-channel picture which is what I want:
If I use RemoveAlphaChannel
, I will get this picture instead:
image-processing image
image-processing image
edited Jan 24 at 8:13
Andreas Rejbrand
10314
10314
asked Jan 24 at 6:59


VoldikssVoldikss
709
709
3
$begingroup$
doesRemoveAlphaChannel[img, White]
not work for you? it does give 3-channel image (ImageChannels@RemoveAlphaChannel[img, White]
is 3).
$endgroup$
– kglr
Jan 24 at 7:26
$begingroup$
@kglr Yes it works for that situation. It's amazing, thank you.
$endgroup$
– Voldikss
Jan 24 at 7:57
add a comment |
3
$begingroup$
doesRemoveAlphaChannel[img, White]
not work for you? it does give 3-channel image (ImageChannels@RemoveAlphaChannel[img, White]
is 3).
$endgroup$
– kglr
Jan 24 at 7:26
$begingroup$
@kglr Yes it works for that situation. It's amazing, thank you.
$endgroup$
– Voldikss
Jan 24 at 7:57
3
3
$begingroup$
does
RemoveAlphaChannel[img, White]
not work for you? it does give 3-channel image ( ImageChannels@RemoveAlphaChannel[img, White]
is 3).$endgroup$
– kglr
Jan 24 at 7:26
$begingroup$
does
RemoveAlphaChannel[img, White]
not work for you? it does give 3-channel image ( ImageChannels@RemoveAlphaChannel[img, White]
is 3).$endgroup$
– kglr
Jan 24 at 7:26
$begingroup$
@kglr Yes it works for that situation. It's amazing, thank you.
$endgroup$
– Voldikss
Jan 24 at 7:57
$begingroup$
@kglr Yes it works for that situation. It's amazing, thank you.
$endgroup$
– Voldikss
Jan 24 at 7:57
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
The second example from RemoveAlphaChannel
:
- Remove opacity by blending with a white background:
img2 = RemoveAlphaChannel[img, White]
ImageChannels /@ {img, img2}
{4, 3}
ColorSeparate /@ {img, img2} // Grid
Row[{Labeled[Framed@AlphaChannel@img, "img", Top],
Labeled[Framed@AlphaChannel@img2, "img2", Top]}]
$endgroup$
$begingroup$
Thank you very much @kglr. I wonder ifRemoveAlphaChannel[#, White]&
is universal. If it also works for various alpha channels. (I've tried some pictures with different alpha channels and it works, but I am still not sure whether it works for all the cases...)
$endgroup$
– Voldikss
Jan 24 at 7:54
$begingroup$
@VoldikSS, I am not sure if it works for all cases.
$endgroup$
– kglr
Jan 24 at 8:04
add a comment |
$begingroup$
@kglr 's solution is very convenient and powerful. However RemoveAlphaChannel[#, colorname]&
does not work for all the cases. So I spent some time searching in the web about image channels and found the principle of the alpha channel.
Based on that, I get the following solution which can used for other cases(different images with different alpha channels).
reduceImageChannels[img_] :=
Map[Most,
Map[(#*#[[4]] + 1*(1 - #[[4]])) &,
(Flatten[ImageData@img, 1])]] // Partition[#, First@ImageDimensions[img]] & // Image
To check if it works
img = Import @ "https://i.stack.imgur.com/XvzDc.png"
img2 = reduceImageChannels@img
ImageChannels@img2
3
It given me the image exactly what I want. Exciting!
BTW, I am a mathematica newbie, so be free to correct my code and English grammer.
$endgroup$
$begingroup$
I haven't ran the code, butMost
gives all but the last element of a list. And what is120
doing there, is that something to do with theImageDimensions
?
$endgroup$
– KraZug
Jan 26 at 13:42
$begingroup$
Thank you for the suggestion! I will replaceDrop[#, {4}] &
withMost
. You are right,ImageDimensions@img
returns{120,120}
$endgroup$
– Voldikss
Jan 26 at 13:45
$begingroup$
you can also usereduceImageChannels2[img_] := Map[Most[#*#[[4]] + 1*(1 - #[[4]])] &, ImageData@img, {2}]
$endgroup$
– kglr
Jan 26 at 13:56
$begingroup$
@kglr Thanks, it's much more elegant! I even forgot theMap
'slevelspec
option...
$endgroup$
– Voldikss
Jan 26 at 13:59
1
$begingroup$
for an arbitrary color in the second argument,sayOrange
,RemoveAlphaChannel[img, Orange]
andImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
gives the same image asImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
(that is,Max@(ImageData@ ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img] - ImageData[RemoveAlphaChannel[img, Orange]])
.) Note thatOrange
isRGBColor[1,.5,0]
.
$endgroup$
– kglr
Jan 26 at 14:26
|
show 6 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "387"
};
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%2fmathematica.stackexchange.com%2fquestions%2f190158%2fhow-to-convert-a-4-channel-image-to-3-channel-image-in-an-elegant-way%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
The second example from RemoveAlphaChannel
:
- Remove opacity by blending with a white background:
img2 = RemoveAlphaChannel[img, White]
ImageChannels /@ {img, img2}
{4, 3}
ColorSeparate /@ {img, img2} // Grid
Row[{Labeled[Framed@AlphaChannel@img, "img", Top],
Labeled[Framed@AlphaChannel@img2, "img2", Top]}]
$endgroup$
$begingroup$
Thank you very much @kglr. I wonder ifRemoveAlphaChannel[#, White]&
is universal. If it also works for various alpha channels. (I've tried some pictures with different alpha channels and it works, but I am still not sure whether it works for all the cases...)
$endgroup$
– Voldikss
Jan 24 at 7:54
$begingroup$
@VoldikSS, I am not sure if it works for all cases.
$endgroup$
– kglr
Jan 24 at 8:04
add a comment |
$begingroup$
The second example from RemoveAlphaChannel
:
- Remove opacity by blending with a white background:
img2 = RemoveAlphaChannel[img, White]
ImageChannels /@ {img, img2}
{4, 3}
ColorSeparate /@ {img, img2} // Grid
Row[{Labeled[Framed@AlphaChannel@img, "img", Top],
Labeled[Framed@AlphaChannel@img2, "img2", Top]}]
$endgroup$
$begingroup$
Thank you very much @kglr. I wonder ifRemoveAlphaChannel[#, White]&
is universal. If it also works for various alpha channels. (I've tried some pictures with different alpha channels and it works, but I am still not sure whether it works for all the cases...)
$endgroup$
– Voldikss
Jan 24 at 7:54
$begingroup$
@VoldikSS, I am not sure if it works for all cases.
$endgroup$
– kglr
Jan 24 at 8:04
add a comment |
$begingroup$
The second example from RemoveAlphaChannel
:
- Remove opacity by blending with a white background:
img2 = RemoveAlphaChannel[img, White]
ImageChannels /@ {img, img2}
{4, 3}
ColorSeparate /@ {img, img2} // Grid
Row[{Labeled[Framed@AlphaChannel@img, "img", Top],
Labeled[Framed@AlphaChannel@img2, "img2", Top]}]
$endgroup$
The second example from RemoveAlphaChannel
:
- Remove opacity by blending with a white background:
img2 = RemoveAlphaChannel[img, White]
ImageChannels /@ {img, img2}
{4, 3}
ColorSeparate /@ {img, img2} // Grid
Row[{Labeled[Framed@AlphaChannel@img, "img", Top],
Labeled[Framed@AlphaChannel@img2, "img2", Top]}]
edited Jan 24 at 7:45
answered Jan 24 at 7:36
kglrkglr
189k10205422
189k10205422
$begingroup$
Thank you very much @kglr. I wonder ifRemoveAlphaChannel[#, White]&
is universal. If it also works for various alpha channels. (I've tried some pictures with different alpha channels and it works, but I am still not sure whether it works for all the cases...)
$endgroup$
– Voldikss
Jan 24 at 7:54
$begingroup$
@VoldikSS, I am not sure if it works for all cases.
$endgroup$
– kglr
Jan 24 at 8:04
add a comment |
$begingroup$
Thank you very much @kglr. I wonder ifRemoveAlphaChannel[#, White]&
is universal. If it also works for various alpha channels. (I've tried some pictures with different alpha channels and it works, but I am still not sure whether it works for all the cases...)
$endgroup$
– Voldikss
Jan 24 at 7:54
$begingroup$
@VoldikSS, I am not sure if it works for all cases.
$endgroup$
– kglr
Jan 24 at 8:04
$begingroup$
Thank you very much @kglr. I wonder if
RemoveAlphaChannel[#, White]&
is universal. If it also works for various alpha channels. (I've tried some pictures with different alpha channels and it works, but I am still not sure whether it works for all the cases...)$endgroup$
– Voldikss
Jan 24 at 7:54
$begingroup$
Thank you very much @kglr. I wonder if
RemoveAlphaChannel[#, White]&
is universal. If it also works for various alpha channels. (I've tried some pictures with different alpha channels and it works, but I am still not sure whether it works for all the cases...)$endgroup$
– Voldikss
Jan 24 at 7:54
$begingroup$
@VoldikSS, I am not sure if it works for all cases.
$endgroup$
– kglr
Jan 24 at 8:04
$begingroup$
@VoldikSS, I am not sure if it works for all cases.
$endgroup$
– kglr
Jan 24 at 8:04
add a comment |
$begingroup$
@kglr 's solution is very convenient and powerful. However RemoveAlphaChannel[#, colorname]&
does not work for all the cases. So I spent some time searching in the web about image channels and found the principle of the alpha channel.
Based on that, I get the following solution which can used for other cases(different images with different alpha channels).
reduceImageChannels[img_] :=
Map[Most,
Map[(#*#[[4]] + 1*(1 - #[[4]])) &,
(Flatten[ImageData@img, 1])]] // Partition[#, First@ImageDimensions[img]] & // Image
To check if it works
img = Import @ "https://i.stack.imgur.com/XvzDc.png"
img2 = reduceImageChannels@img
ImageChannels@img2
3
It given me the image exactly what I want. Exciting!
BTW, I am a mathematica newbie, so be free to correct my code and English grammer.
$endgroup$
$begingroup$
I haven't ran the code, butMost
gives all but the last element of a list. And what is120
doing there, is that something to do with theImageDimensions
?
$endgroup$
– KraZug
Jan 26 at 13:42
$begingroup$
Thank you for the suggestion! I will replaceDrop[#, {4}] &
withMost
. You are right,ImageDimensions@img
returns{120,120}
$endgroup$
– Voldikss
Jan 26 at 13:45
$begingroup$
you can also usereduceImageChannels2[img_] := Map[Most[#*#[[4]] + 1*(1 - #[[4]])] &, ImageData@img, {2}]
$endgroup$
– kglr
Jan 26 at 13:56
$begingroup$
@kglr Thanks, it's much more elegant! I even forgot theMap
'slevelspec
option...
$endgroup$
– Voldikss
Jan 26 at 13:59
1
$begingroup$
for an arbitrary color in the second argument,sayOrange
,RemoveAlphaChannel[img, Orange]
andImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
gives the same image asImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
(that is,Max@(ImageData@ ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img] - ImageData[RemoveAlphaChannel[img, Orange]])
.) Note thatOrange
isRGBColor[1,.5,0]
.
$endgroup$
– kglr
Jan 26 at 14:26
|
show 6 more comments
$begingroup$
@kglr 's solution is very convenient and powerful. However RemoveAlphaChannel[#, colorname]&
does not work for all the cases. So I spent some time searching in the web about image channels and found the principle of the alpha channel.
Based on that, I get the following solution which can used for other cases(different images with different alpha channels).
reduceImageChannels[img_] :=
Map[Most,
Map[(#*#[[4]] + 1*(1 - #[[4]])) &,
(Flatten[ImageData@img, 1])]] // Partition[#, First@ImageDimensions[img]] & // Image
To check if it works
img = Import @ "https://i.stack.imgur.com/XvzDc.png"
img2 = reduceImageChannels@img
ImageChannels@img2
3
It given me the image exactly what I want. Exciting!
BTW, I am a mathematica newbie, so be free to correct my code and English grammer.
$endgroup$
$begingroup$
I haven't ran the code, butMost
gives all but the last element of a list. And what is120
doing there, is that something to do with theImageDimensions
?
$endgroup$
– KraZug
Jan 26 at 13:42
$begingroup$
Thank you for the suggestion! I will replaceDrop[#, {4}] &
withMost
. You are right,ImageDimensions@img
returns{120,120}
$endgroup$
– Voldikss
Jan 26 at 13:45
$begingroup$
you can also usereduceImageChannels2[img_] := Map[Most[#*#[[4]] + 1*(1 - #[[4]])] &, ImageData@img, {2}]
$endgroup$
– kglr
Jan 26 at 13:56
$begingroup$
@kglr Thanks, it's much more elegant! I even forgot theMap
'slevelspec
option...
$endgroup$
– Voldikss
Jan 26 at 13:59
1
$begingroup$
for an arbitrary color in the second argument,sayOrange
,RemoveAlphaChannel[img, Orange]
andImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
gives the same image asImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
(that is,Max@(ImageData@ ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img] - ImageData[RemoveAlphaChannel[img, Orange]])
.) Note thatOrange
isRGBColor[1,.5,0]
.
$endgroup$
– kglr
Jan 26 at 14:26
|
show 6 more comments
$begingroup$
@kglr 's solution is very convenient and powerful. However RemoveAlphaChannel[#, colorname]&
does not work for all the cases. So I spent some time searching in the web about image channels and found the principle of the alpha channel.
Based on that, I get the following solution which can used for other cases(different images with different alpha channels).
reduceImageChannels[img_] :=
Map[Most,
Map[(#*#[[4]] + 1*(1 - #[[4]])) &,
(Flatten[ImageData@img, 1])]] // Partition[#, First@ImageDimensions[img]] & // Image
To check if it works
img = Import @ "https://i.stack.imgur.com/XvzDc.png"
img2 = reduceImageChannels@img
ImageChannels@img2
3
It given me the image exactly what I want. Exciting!
BTW, I am a mathematica newbie, so be free to correct my code and English grammer.
$endgroup$
@kglr 's solution is very convenient and powerful. However RemoveAlphaChannel[#, colorname]&
does not work for all the cases. So I spent some time searching in the web about image channels and found the principle of the alpha channel.
Based on that, I get the following solution which can used for other cases(different images with different alpha channels).
reduceImageChannels[img_] :=
Map[Most,
Map[(#*#[[4]] + 1*(1 - #[[4]])) &,
(Flatten[ImageData@img, 1])]] // Partition[#, First@ImageDimensions[img]] & // Image
To check if it works
img = Import @ "https://i.stack.imgur.com/XvzDc.png"
img2 = reduceImageChannels@img
ImageChannels@img2
3
It given me the image exactly what I want. Exciting!
BTW, I am a mathematica newbie, so be free to correct my code and English grammer.
edited Jan 26 at 13:46
answered Jan 26 at 13:37


VoldikssVoldikss
709
709
$begingroup$
I haven't ran the code, butMost
gives all but the last element of a list. And what is120
doing there, is that something to do with theImageDimensions
?
$endgroup$
– KraZug
Jan 26 at 13:42
$begingroup$
Thank you for the suggestion! I will replaceDrop[#, {4}] &
withMost
. You are right,ImageDimensions@img
returns{120,120}
$endgroup$
– Voldikss
Jan 26 at 13:45
$begingroup$
you can also usereduceImageChannels2[img_] := Map[Most[#*#[[4]] + 1*(1 - #[[4]])] &, ImageData@img, {2}]
$endgroup$
– kglr
Jan 26 at 13:56
$begingroup$
@kglr Thanks, it's much more elegant! I even forgot theMap
'slevelspec
option...
$endgroup$
– Voldikss
Jan 26 at 13:59
1
$begingroup$
for an arbitrary color in the second argument,sayOrange
,RemoveAlphaChannel[img, Orange]
andImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
gives the same image asImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
(that is,Max@(ImageData@ ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img] - ImageData[RemoveAlphaChannel[img, Orange]])
.) Note thatOrange
isRGBColor[1,.5,0]
.
$endgroup$
– kglr
Jan 26 at 14:26
|
show 6 more comments
$begingroup$
I haven't ran the code, butMost
gives all but the last element of a list. And what is120
doing there, is that something to do with theImageDimensions
?
$endgroup$
– KraZug
Jan 26 at 13:42
$begingroup$
Thank you for the suggestion! I will replaceDrop[#, {4}] &
withMost
. You are right,ImageDimensions@img
returns{120,120}
$endgroup$
– Voldikss
Jan 26 at 13:45
$begingroup$
you can also usereduceImageChannels2[img_] := Map[Most[#*#[[4]] + 1*(1 - #[[4]])] &, ImageData@img, {2}]
$endgroup$
– kglr
Jan 26 at 13:56
$begingroup$
@kglr Thanks, it's much more elegant! I even forgot theMap
'slevelspec
option...
$endgroup$
– Voldikss
Jan 26 at 13:59
1
$begingroup$
for an arbitrary color in the second argument,sayOrange
,RemoveAlphaChannel[img, Orange]
andImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
gives the same image asImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
(that is,Max@(ImageData@ ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img] - ImageData[RemoveAlphaChannel[img, Orange]])
.) Note thatOrange
isRGBColor[1,.5,0]
.
$endgroup$
– kglr
Jan 26 at 14:26
$begingroup$
I haven't ran the code, but
Most
gives all but the last element of a list. And what is 120
doing there, is that something to do with the ImageDimensions
?$endgroup$
– KraZug
Jan 26 at 13:42
$begingroup$
I haven't ran the code, but
Most
gives all but the last element of a list. And what is 120
doing there, is that something to do with the ImageDimensions
?$endgroup$
– KraZug
Jan 26 at 13:42
$begingroup$
Thank you for the suggestion! I will replace
Drop[#, {4}] &
with Most
. You are right, ImageDimensions@img
returns {120,120}
$endgroup$
– Voldikss
Jan 26 at 13:45
$begingroup$
Thank you for the suggestion! I will replace
Drop[#, {4}] &
with Most
. You are right, ImageDimensions@img
returns {120,120}
$endgroup$
– Voldikss
Jan 26 at 13:45
$begingroup$
you can also use
reduceImageChannels2[img_] := Map[Most[#*#[[4]] + 1*(1 - #[[4]])] &, ImageData@img, {2}]
$endgroup$
– kglr
Jan 26 at 13:56
$begingroup$
you can also use
reduceImageChannels2[img_] := Map[Most[#*#[[4]] + 1*(1 - #[[4]])] &, ImageData@img, {2}]
$endgroup$
– kglr
Jan 26 at 13:56
$begingroup$
@kglr Thanks, it's much more elegant! I even forgot the
Map
's levelspec
option...$endgroup$
– Voldikss
Jan 26 at 13:59
$begingroup$
@kglr Thanks, it's much more elegant! I even forgot the
Map
's levelspec
option...$endgroup$
– Voldikss
Jan 26 at 13:59
1
1
$begingroup$
for an arbitrary color in the second argument,say
Orange
, RemoveAlphaChannel[img, Orange]
and ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
gives the same image as ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
(that is, Max@(ImageData@ ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img] - ImageData[RemoveAlphaChannel[img, Orange]])
.) Note that Orange
is RGBColor[1,.5,0]
.$endgroup$
– kglr
Jan 26 at 14:26
$begingroup$
for an arbitrary color in the second argument,say
Orange
, RemoveAlphaChannel[img, Orange]
and ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
gives the same image as ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img]
(that is, Max@(ImageData@ ImageApply[Most[#]*#[[4]] + {1, 0.5, 0}*(1 - #[[4]]) &, img] - ImageData[RemoveAlphaChannel[img, Orange]])
.) Note that Orange
is RGBColor[1,.5,0]
.$endgroup$
– kglr
Jan 26 at 14:26
|
show 6 more comments
Thanks for contributing an answer to Mathematica 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.
Use MathJax to format equations. MathJax reference.
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%2fmathematica.stackexchange.com%2fquestions%2f190158%2fhow-to-convert-a-4-channel-image-to-3-channel-image-in-an-elegant-way%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
3
$begingroup$
does
RemoveAlphaChannel[img, White]
not work for you? it does give 3-channel image (ImageChannels@RemoveAlphaChannel[img, White]
is 3).$endgroup$
– kglr
Jan 24 at 7:26
$begingroup$
@kglr Yes it works for that situation. It's amazing, thank you.
$endgroup$
– Voldikss
Jan 24 at 7:57