How to remove G from RGB image
古いコメントを表示
How would you remove G from an RGB image?
2 件のコメント
Image Analyst
2013 年 10 月 5 日
What does this mean? Do you want to set the entire green channel to zero, like Walter did? Do you want to set green looking objects in the image to black? Do you want to go from a 3D color array with 3 color channels to a 3D array with only two color channels? Do you want to extract (segment) the green objects in the image and place them in a new, separate image? Please explain what you want to do so we can remove the uncertainty in your question.
Walter Roberson
2013 年 10 月 5 日
Are you "green screening" ?
採用された回答
その他の回答 (1 件)
Walter Roberson
2013 年 10 月 5 日
YourImage = imread('TheImage.jpg');
YourImage(:,:,2) = 0;
image(YourImage);
imwrite(YourImage, 'TheNewImage.jpg');
カテゴリ
ヘルプ センター および File Exchange で Red についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!