Effacer les filtres
Effacer les filtres

How to design an image with black and white bits in matlab?

2 vues (au cours des 30 derniers jours)
marie lasz
marie lasz le 24 Avr 2021
Commenté : marie lasz le 25 Avr 2021
Hello,
Can anyone guide me how to generate an image with black and white bits with any letter or any sign?
Image source:copied

Réponse acceptée

Image Analyst
Image Analyst le 24 Avr 2021
Try this:
grayImage = 255 * zeros(100, 100, 'uint8');
for k = 1 : length(rows)
grayimage(row(k), columns(k)) = 0;
end
rows and columns are the 1-D vectors/lists of where you want there to be a black pixel. Obviously the values in there depend on that shape you want to draw.

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by