This is an archive of the old MediaWiki-based ImageJ wiki. The current website can be found at imagej.net.

Contour Lines

ContourLines (ImageJ)
Author Eugene Katrukha
Maintainer Eugene Katrukha
File ContourLines_.jar
Source github
Initial release 07 March 2019
Latest version 07 March 2019
Development status stable
Website [1]


Plugin generating contour lines with equal spacing on top of an image (using overlay). Based/inspired by streamlines project by anvaka and this publication (use it for citation).

CL2.gif

Parameters

After plugin launch, rendering parameters window will appear

CL_parameters_dialog.png

Smoothing radius

To find the "vector field of an image", plugin calculates convolution of image with derivative of Gaussian in *x* and *y* to estimate intensity gradient at each point. You can specify smoothing radius (SD of Gaussian). The larger the value, less small intensity details are available. For example, here are two images, the left one is build with smoothing radius of 2.0, while the right one with smoothing radius of 10.0 pixels.

smoothing_2_line_0.05_distance_3.png smoothing_10_line_0.05_distance_3.png

Notice that the small spot in the right top corner "disappeared".

Line integration step

This parameter defines, how precisely contour generation routine follows gradient vector field of the image. Smaller value result in more precise contour lines, but also take longer time to generate them. Example below illustrates integration step of 0.05 (left) versus 0.5 pixels (right).

smoothing_2_line_0.05_distance_3.png smoothing_2_line_0.5_distance_3.png

Distance between lines

Well, how densely you want contour lines to be plotted. Left image is 3 px, right image is 10 px.

smoothing_2_line_0.05_distance_3.png smoothing_2_line_0.05_distance_10.png

Stop line at fraction of distance

This parameter is a fraction of previous and it defines when the line integration will stop. I.e. end of each line cannot come closer than this distance to already existing lines. For example, on the left image parameter's value is 0.5, while on the right it is 0.1.

smoothing_2_line_0.05_distance_3_x.png smoothing_2_line_0.05_distance_3_single_color_end_0.1.png

Use single color

With this option checked, plugin will use current selected color (in toolbar or Color Picker) to build lines. Example:

smoothing_2_line_0.05_distance_3_single_color.png

Use color lookup tables (LUT)

Plugin will use one of the installed ImageJ/Fiji lookup tables (LUTs) to color code each contour with its average intensity. Pay attention, that current minimum and maximum of intensity would be taken from "Brightness/Contrast" settings of the image. In works better if your image uses "dark-to-bright" LUT and you check "Invert LUT" option for contours. In this case brighter lines would be on top of dark image areas and vice versa. In the example below the left image uses inverted "Thermal" LUT for contours, while contour LUT of the image on the right is not inverted.

smoothing_2_line_0.05_distance_3.png smoothing_2_line_0.05_distance_3_not_inverted_thermal.png

Remove open contours

Plugin will remove open contours (contours with free ends). Examples are below, left image includes open contours, while the right one not.

smoothing_2_line_0.05_distance_3_x.png smoothing_2_line_0.05_distance_3_single_color_closed_only.png


Updates history

  • v.0.0.4 added criteria for line integration end. Added a possibility to remove open contours.