Transformation function on image

5 ビュー (過去 30 日間)
Miles Hao Peng Su
Miles Hao Peng Su 2022 年 9 月 28 日
コメント済み: Miles Hao Peng Su 2022 年 9 月 28 日
Hi guys, may I ask how do I implement a transformation function on an image?
Maybe it's a function like this: T : , where x is any number and k is the grey scale level, used on a 256 level grey image.
function [Iout,m,mu2,mu3] = enh(Iin,a,b) %take in values of a and b
I = Iin;
for i = 1:254
I(I == i) = a*(i+b);
end
Iout = I;
...
Here is my recent attempt, where I tried to loop the matrix through (Iin) and writes in new values with each loop.
However the code did not work. All the values became 255 after passing through enh
May I know how do you do this?

採用された回答

Image Analyst
Image Analyst 2022 年 9 月 28 日
If r is the input image, and k is your scalar number, you can create output image s simply by doing this:
s = k * r;
  1 件のコメント
Miles Hao Peng Su
Miles Hao Peng Su 2022 年 9 月 28 日
Thanks! This is a much easier way to solve this quesition

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by