How to convert a 4-channel image to 3-channel image in an elegant way?












8












$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:



4-channel picture



 img = Import @ "https://i.stack.imgur.com/XvzDc.png"


This is the 3-channel picture which is what I want:



3-channel picture



If I use RemoveAlphaChannel, I will get this picture instead:



Picture after RemoveAlphaChannel










share|improve this question











$endgroup$








  • 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
















8












$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:



4-channel picture



 img = Import @ "https://i.stack.imgur.com/XvzDc.png"


This is the 3-channel picture which is what I want:



3-channel picture



If I use RemoveAlphaChannel, I will get this picture instead:



Picture after RemoveAlphaChannel










share|improve this question











$endgroup$








  • 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














8












8








8


2



$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:



4-channel picture



 img = Import @ "https://i.stack.imgur.com/XvzDc.png"


This is the 3-channel picture which is what I want:



3-channel picture



If I use RemoveAlphaChannel, I will get this picture instead:



Picture after RemoveAlphaChannel










share|improve this question











$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:



4-channel picture



 img = Import @ "https://i.stack.imgur.com/XvzDc.png"


This is the 3-channel picture which is what I want:



3-channel picture



If I use RemoveAlphaChannel, I will get this picture instead:



Picture after RemoveAlphaChannel







image-processing image






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 24 at 8:13









Andreas Rejbrand

10314




10314










asked Jan 24 at 6:59









VoldikssVoldikss

709




709








  • 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














  • 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








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










2 Answers
2






active

oldest

votes


















9












$begingroup$

The second example from RemoveAlphaChannel:





  • Remove opacity by blending with a white background:






img2 = RemoveAlphaChannel[img, White]


enter image description here



ImageChannels /@ {img, img2}



{4, 3}




ColorSeparate /@ {img, img2} // Grid


enter image description here



Row[{Labeled[Framed@AlphaChannel@img, "img", Top], 
Labeled[Framed@AlphaChannel@img2, "img2", Top]}]


enter image description here






share|improve this answer











$endgroup$













  • $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



















2












$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"


enter image description here



img2 = reduceImageChannels@img


enter image description here



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.






share|improve this answer











$endgroup$













  • $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$
    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






  • 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













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
});


}
});














draft saved

draft discarded


















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









9












$begingroup$

The second example from RemoveAlphaChannel:





  • Remove opacity by blending with a white background:






img2 = RemoveAlphaChannel[img, White]


enter image description here



ImageChannels /@ {img, img2}



{4, 3}




ColorSeparate /@ {img, img2} // Grid


enter image description here



Row[{Labeled[Framed@AlphaChannel@img, "img", Top], 
Labeled[Framed@AlphaChannel@img2, "img2", Top]}]


enter image description here






share|improve this answer











$endgroup$













  • $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
















9












$begingroup$

The second example from RemoveAlphaChannel:





  • Remove opacity by blending with a white background:






img2 = RemoveAlphaChannel[img, White]


enter image description here



ImageChannels /@ {img, img2}



{4, 3}




ColorSeparate /@ {img, img2} // Grid


enter image description here



Row[{Labeled[Framed@AlphaChannel@img, "img", Top], 
Labeled[Framed@AlphaChannel@img2, "img2", Top]}]


enter image description here






share|improve this answer











$endgroup$













  • $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














9












9








9





$begingroup$

The second example from RemoveAlphaChannel:





  • Remove opacity by blending with a white background:






img2 = RemoveAlphaChannel[img, White]


enter image description here



ImageChannels /@ {img, img2}



{4, 3}




ColorSeparate /@ {img, img2} // Grid


enter image description here



Row[{Labeled[Framed@AlphaChannel@img, "img", Top], 
Labeled[Framed@AlphaChannel@img2, "img2", Top]}]


enter image description here






share|improve this answer











$endgroup$



The second example from RemoveAlphaChannel:





  • Remove opacity by blending with a white background:






img2 = RemoveAlphaChannel[img, White]


enter image description here



ImageChannels /@ {img, img2}



{4, 3}




ColorSeparate /@ {img, img2} // Grid


enter image description here



Row[{Labeled[Framed@AlphaChannel@img, "img", Top], 
Labeled[Framed@AlphaChannel@img2, "img2", Top]}]


enter image description here







share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 24 at 7:45

























answered Jan 24 at 7:36









kglrkglr

189k10205422




189k10205422












  • $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$
    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$
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











2












$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"


enter image description here



img2 = reduceImageChannels@img


enter image description here



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.






share|improve this answer











$endgroup$













  • $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$
    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






  • 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


















2












$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"


enter image description here



img2 = reduceImageChannels@img


enter image description here



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.






share|improve this answer











$endgroup$













  • $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$
    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






  • 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
















2












2








2





$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"


enter image description here



img2 = reduceImageChannels@img


enter image description here



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.






share|improve this answer











$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"


enter image description here



img2 = reduceImageChannels@img


enter image description here



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.







share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 26 at 13:46

























answered Jan 26 at 13:37









VoldikssVoldikss

709




709












  • $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$
    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






  • 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$
    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$
    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






  • 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$
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




















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter