Manipulate RGB Values for an Image

3 ビュー (過去 30 日間)
Billy
Billy 2012 年 11 月 19 日
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).

採用された回答

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by