Make 256by 256 by for loop
Mostrar comentarios más antiguos
What is the code to do The image that i have downloaded in the box?

Respuesta aceptada
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.
Categorías
Más información sobre Images en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
