Make 256by 256 by for loop

1 view (last 30 days)
fatma karkosh
fatma karkosh on 20 Mar 2022
Commented: Image Analyst on 20 Mar 2022
What is the code to do The image that i have downloaded in the box?

Accepted Answer

Matt J
Matt J on 20 Mar 2022
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 Comments
Matt J
Matt J on 20 Mar 2022
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 on 20 Mar 2022
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.

Sign in to comment.

More Answers (1)

Image Analyst
Image Analyst on 20 Mar 2022
Edited: Image Analyst on 20 Mar 2022
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.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!