Generating a mask from scratch

1 回表示 (過去 30 日間)
Salad Box
Salad Box 2022 年 10 月 3 日
コメント済み: Salad Box 2022 年 10 月 4 日
Hi
I would like to generate a simple mask image from scratch in Matlab if it is possible.
It has the following criteria:
  1. the size of the image needs to be 500 x 500 pixels.
  2. the center of the mask image needs to be a number, say 8. This area is white [255 255 255].
  3. the size of the number is best to be adjustable by fontsize?.
  4. the rest of the areas in the mask image needs to be black [0 0 0].
See the sample image below which is NOT done in Matlab. Is this achievable in Matlab?

採用された回答

Image Analyst
Image Analyst 2022 年 10 月 3 日
編集済み: Image Analyst 2022 年 10 月 3 日
It's a trivial modification of the code in the FAQ that draws a ring. Just make two rings with different centers and radii.
You could also use insertText if you have the Computer Vision Toolbox.
  5 件のコメント
Image Analyst
Image Analyst 2022 年 10 月 4 日
Thanks. You can use imbinarize to force it to have no "noise" or gray levels, which are probably used to anti-alias (smooth) the character. Also, if you save the image(s) make sure you use the PNG extension, for lossless compression, rather than JPG which will change and add gray levels due to it being lossy compression.
Salad Box
Salad Box 2022 年 10 月 4 日
Thank you very much for your advices. I will try the imbinarize.

サインインしてコメントする。

その他の回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by