Make 256by 256 by for loop

1 次查看(过去 30 天)
What is the code to do The image that i have downloaded in the box?

采纳的回答

Matt J
Matt J 2022-3-20
b=repmat(linspace(0,1,128),128,1);
e=ones(size(b));
I=[b, e;e,fliplr(b)];
I(116:140,116:140)=0;
imagesc(I); colormap(gray(256)); axis square;
  3 个评论
Matt J
Matt J 2022-3-20
I might be able to help if I could see what I'm helping you with. You haven't posted any of your code.
Image Analyst
Image Analyst 2022-3-20
Yes, like Matt said, give your code, because your supervisor wanted you to do it with a for loop. He did not want Matt to give him for-loop code. He wanted you.

请先登录,再进行评论。

更多回答(1 个)

Image Analyst
Image Analyst 2022-3-20
编辑:Image Analyst 2022-3-20
This is just super basic assigning of values. If you can't do that, then you won't be able to do anything more in MATLAB once you have that image. Then you'll have to ask us how to do the next part. Become self sufficient by investing only a short 2 hours here:
After that you'll easily be able to make that image on your own. Hint -- some functions that may be involved
zeros(), ones(), linspace(), round(), tril(), triu(), as well as basic assignments like
ramp = 1:256;
grayImage(row1:row2, col1:col2) = 0;
Use polyfit() and polyval() if you want to burn in slanted white lines.
Not only will you be able to make that simple image but you'll be set up to do lots more complicated ans sophistcated things too. It's well worth 2 hours of your time.
For the text, you can use text() if you want the text in the overlay above the image. If you have the Computer Vision Toolbox you can use insertText() to burn text into the image pixels.

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by