How to design an image with black and white bits in matlab?
2 次查看(过去 30 天)
显示 更早的评论
Hello,
Can anyone guide me how to generate an image with black and white bits with any letter or any sign?
Image source:copied
0 个评论
采纳的回答
Image Analyst
2021-4-24
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!