In this version, I create an 8x8 image with a black background and assign the white color by scanning this image in ONE loop. Indeed, there is 64 cells in the chessboard and they can be numbered from 0 (the top left cell) to 63 (the bottom right). The question is now: How can we extract the XY-coordinates from these indexes?
In the following figure, on the left, the chessboard contains the cell indexes. For example, the cell # 13 has XY-coordinates (5,1).
And to extract the coordinates,
- X is calculated from the remainder after division by the image width.
- Y is the result of the integer division of the cell index by the image width.
Here is the final code...
+++ IJ snippet: chessboard_v2_1_imagej.ijm +++
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// chessboard version 2.1 | |
// using one loop | |
// Jean-Christophe Taveau | |
// | |
chessSize=512; | |
newImage("chess", "8-bit Black", 8, 8, 1); | |
for (i=0;i<8*8;i++) | |
{ | |
x=i%8; | |
y=floor(i/8); | |
if ((x+y)%2==0) { | |
setPixel(x,y,255); | |
} | |
} | |
// Scale the 8x8 image to build the final chessboard | |
run("Size...", "width="+chessSize+" height="+chessSize+" constrain average interpolation=None"); |
No comments:
Post a Comment