Manipulate RGB Values for an Image

3 Ansichten (letzte 30 Tage)
Billy
Billy am 19 Nov. 2012
Hello, I was wondering how I would increase the value of the blue layer of a .jpg. So far, I have only been able to find what those values are, using size(x).

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 19 Nov. 2012
BX = 0.20; %20 percent
IM(:,:,3) = IM(:,:,3) * (1 + BX);
Provided that IM is uint8 dataclass, the limiting to 255 will happen automatically.

Weitere Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by