The ImageJ scripting language is really powerful. Here is an application in my series Drawing a chessboard...
Using the Process > Math > Macro..., the script for drawing a chessboard (previously published) is really simplified:
Chessboard_iterator.ijm
+++ 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 Process > Math> Macro... | |
// Jean-Christophe Taveau | |
chessSize=256; | |
newImage("chess", "8-bit Black", 8, 8, 1); | |
run("Macro...", "code=[if ((x+y)%2==0) v=255;]"); | |
run("Size...", "width="+chessSize+" height="+chessSize+ " constrain average interpolation=None"); |
+++ end of IJ snippet +++
I couldn' t find another version ... and you?
No comments:
Post a Comment