Showing posts with label programming. Show all posts
Showing posts with label programming. Show all posts

Tuesday, January 2, 2018

Functions in ECMAScript



Functions have a central role in JavaScript (ECMAScript 2015+),this is important to know how to use them...


Friday, October 27, 2017

Loops



Repeating tasks in a script is the most important part when programming. This process is done using a specific statement: the loop. In JavaScript, you can use while, for (..), for (.. in ..), for (.. of ..).

Wednesday, October 25, 2017

Conditionals



Using conditionals in a script is a way to execute different parts of a code depending of the result of a condition. What is a condition, the operators (comparison and logical)?

Tuesday, October 24, 2017

Read/Write Pixels in a RGB image



Thanks to the methods of the class ImageProcessor [see Post], it is possible to read and write pixels in an image.


Read and Write Pixels in Grayscale Images



Thanks to the methods of the class ImageProcessor [see Post], it is possible to read and write pixels in an image.


Monday, October 23, 2017

Template Strings in ES6



With the new version of JavaScript (ECMAScript 2015+), new String functionalities — very convenient for ImageJ scripts — are available. Take a tour about these new features.


Friday, October 20, 2017

Variables in ECMAScript



With the new version of JavaScript (ECMAScript 2015+), the variables are now defined by three distinct keywords: var, let, and const. Why? That's what we'll see in this post.


Thursday, October 19, 2017

ImageJ and ECMAScript 6


With the last update of ImageJ 1.51r, it is possible to use Java 9 and its new JavaScript engine Nashorn with ECMAScript 6 functionalities.... and that's a great news!! See how to do that...


Wednesday, March 23, 2016

Hello World in JavaScript



First steps in the JavaScript Programming World by writing the famous Hello World script [Wiki]. This program is very popular and if you are interested, there is a list of implementations in various languages [Wiki].


Saturday, March 19, 2016

Development Environment




Your ImageJ is now well configured [Link], it is time to create your first script and optimize the way you write your future scripts...

Friday, March 18, 2016

Configuration: Java and Linux



Before writing JavaScript small programs in Linux, you have to check the Java version used by ImageJ because of a bug with the latest Java packages...

Thursday, February 14, 2013

Programming in JavaScript



Table of Contents of a series dedicated to the use of JavaScript for developing scripts in ImageJ.