Change the intensity of blue in a .jpg
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello, how do I change the blue intensity of a .jpg so that the new image is combination of rg and the new b. Thanks.
0 comentarios
Respuesta aceptada
Image Analyst
el 20 de Nov. de 2012
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
% Now change the blue channel in whatever way you want.
blueChannel = whatever.........
% Then recombine into the new color image.
rgbImage = cat(3, redChannel, greenChannel, blueChannel);
6 comentarios
Image Analyst
el 20 de Nov. de 2012
blueChannel = uint8(single(blueChannel) + 255*BX/100);
Then recombine and show the final image:
imshow(rgbImage);
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!