Wednesday, October 17, 2018

Tiny Dataset Toolkit in JavaScript




I developed a tiny toolkit written in JavaScript containing helper functions to manipulate data...

Tuesday, October 16, 2018

Dataset and Features




To feed a learner of Machine Learning (ML), we need data. But, rather than using image pixels, it is much more powerful to use ImageJ measurements (or features in the ML jargon) ...

Monday, October 15, 2018

Dataset for ML




A new series about Machine Learning (ML) and Image Processing with ImageJ. First we need to create a dataset suitable for machine learning...

Friday, October 12, 2018

Machine Learning: TOC



Section dedicated to Machine Learning and ImageJ



Monday, February 5, 2018

Perspective Transform




Among the various geometric transformations, the Perspective transform is very useful. By default, this transform is not available in Image > Transform. However, it is very easy to implement such a tool...

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 ..).