Filter löschen
Filter löschen

How to create a checkerboard pattern for a specific screen size?

1 Ansicht (letzte 30 Tage)
MM
MM am 8 Sep. 2021
Kommentiert: MM am 8 Sep. 2021
I would like to create a checkerboard pattern (1920 X 1760) and save it as an image. Any suggestion on how this can be done?

Akzeptierte Antwort

Image Analyst
Image Analyst am 8 Sep. 2021
Try this:
numRows = 8;
numColumns = 8;
rows = 1920;
columns = 1760;
pixelsx = floor(rows / (2*numRows))
grayImage = checkerboard(pixelsx, numRows/2, numColumns/2) > 0;
% Resize to rectangular instead of square.
grayImage = imresize(grayImage, [1920, 1760]);
imshow(grayImage);
impixelinfo;
axis('on', 'image');

Weitere Antworten (0)

Kategorien

Mehr zu Read, Write, and Modify Image finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by