Form an image of vertical ramp having a ramp values from 0 to 255 and dimension 256x256.

1 回表示 (過去 30 日間)
scripy for that???

採用された回答

John BG
John BG 2017 年 1 月 25 日
Pravin
this is ramp
A=uint8(repmat([0:1:255]',1,256))
imshow(A)
.
you can save the image in JPEG format:
.
imwrite(A,'ramp.jpg')
.
if this is the kind of ramp you are looking for would you please be so kind to mark my answer as Accepted Answer?
To any other reader, please if you find this answer of any help solving your question,
please click on the thumbs-up vote link,
thanks in advance
John BG
  8 件のコメント
Guillaume
Guillaume 2017 年 1 月 26 日
@John,
As pointed out by Image Analyst, it is a default install of the latest version, R2016b, that gives the warning.
As for 2017-prerelease, as per the NDA you implicitly agreed to if you downloaded it, we're not allowed to talk about it.
Jan
Jan 2017 年 1 月 26 日
For more details about square brackets see Answers: why-not-use-square-brackets

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

その他の回答 (1 件)

Jorge Mario Guerra González
Jorge Mario Guerra González 2017 年 1 月 24 日
編集済み: Jan 2017 年 1 月 26 日
I suppose you want a ramp horizontally, since you only want values from 0-255 in a 256x256 matrix. Filled with integers.
X=uint8(0:255);
x=meshgrid(X,X);
imshow(x, [])
  3 件のコメント
Jan
Jan 2017 年 1 月 25 日
編集済み: Jan 2017 年 1 月 25 日
@Jorge: The image is displayed correctly either if you use:
X = uint8(0):uint8(255);
or:
X = linspace(0, 1, 256);
Jorge Mario Guerra González
Jorge Mario Guerra González 2017 年 1 月 25 日
編集済み: Jorge Mario Guerra González 2017 年 1 月 25 日
Sorry I wrote the code before without using matlab.
X=0:255;
x=meshgrid(X,X);
imshow(x,[]) %although it uses more memory
that one works as well using imshow(x,[ ]), I corrected it

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

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by