Make 256by 256 by for loop
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
fatma karkosh
el 20 de Mzo. de 2022
Comentada: Image Analyst
el 20 de Mzo. de 2022
What is the code to do The image that i have downloaded in the box?

0 comentarios
Respuesta aceptada
Matt J
el 20 de Mzo. de 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 comentarios
Matt J
el 20 de Mzo. de 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
el 20 de Mzo. de 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.
Más respuestas (1)
Image Analyst
el 20 de Mzo. de 2022
Editada: Image Analyst
el 20 de Mzo. de 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.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
