A really non optimized way for Drawing a Chessboard but a good opportunity to explore the functions available in Image > Stacks, specially those located in the submenu Stacks > Tools.
In this algorithm, we use three functions available in Image > Stacks. They are:
- Image > Stacks > Images to Stack
- Image > Stacks > Tools > Concatenate... In this function, the two stacks can be the same. You don't need the duplication of the original stack.
- Image > Stacks > Tools > Reverse
![]() |
Fig.1: Steps to create the chessboard from two black and white cells |
The algorithm described in the scheme of Fig. 1 is the following:
- Create two cells: one in black and the other in white with newImage(...).
- Create a 2-slices stack.
- Concatenate two 2-slices stacks.
- Concatenate two 4-slices stacks to create a 8-slices stack: yes ! you get your first row.
- Duplicate the row and reverse the order of the cells.
- Then, concatenate the first two rows of the chessboard (16-slices stack).
- Finally, proceed by successive concatenation to get a 32-slices stack and the 64-slices stack.
- To see the chessboard, compute a montage of 8 rows per 8 columns. Et voilà.
+++ IJ snippet +++
+++ End of IJ snippet +++
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 using Stack Tool | |
// Jean-Christophe Taveau | |
// http://crazybiocomputing.blogspot.com | |
// | |
// 1- White Unit cell | |
newImage("cell-white", "8-bit White", 32, 32, 1); | |
// 2- Black Unit Cell | |
run("Duplicate...", "title=cell-black"); | |
run("Invert"); | |
// 3- Row | |
run("Images to Stack", "method=[Copy (center)] name=Stack title=cell use"); | |
run("Concatenate...", "stack1=Stack stack2=Stack title=[tmp]"); | |
run("Concatenate...", "stack1=tmp stack2=tmp title=[row]"); | |
run("Duplicate...", "title=row-1 duplicate"); | |
run("Reverse"); | |
// 4- Rows assembly | |
run("Concatenate...", "stack1=row stack2=row-1 title=[two_rows]"); | |
run("Concatenate...", "stack1=two_rows stack2=two_rows title=[four_rows]"); | |
run("Concatenate...", "stack1=four_rows stack2=four_rows title=[eight_rows]"); | |
run("Make Montage...", "columns=8 rows=8 scale=1 first=1 last=64 increment=1 border=0 font=12"); | |
exit(); |
These functions are really useful to edit small videos loaded as stacks (maybe the subject of a post).
No comments:
Post a Comment