Skip to content

Commit 623c76a

Browse files
authored
Update contour-lines.md
Fix links to images
1 parent df19514 commit 623c76a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

_pages/plugins/contour-lines.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -15,57 +15,57 @@ team-maintainer: '@ekatrukha'
1515

1616
Plugin generating contour lines with equal spacing on top of an image (using overlay). Based/inspired by [streamlines](https://github.com/anvaka/streamlines) project by [anvaka](https://github.com/anvaka) and [this publication](http://web.cs.ucdavis.edu/~ma/SIGGRAPH02/course23/notes/papers/Jobard.pdf) (use it for citation).
1717

18-
http://katpyxa.info/software/ContourLines/CL2.gif
18+
![](https://katpyxa.info/software/ContourLines/CL2.gif)
1919

2020
## Parameters
2121

2222
After plugin launch, rendering parameters window will appear
2323

24-
http://katpyxa.info/software/ContourLines/CL_parameters_dialog.png
24+
![](https://katpyxa.info/software/ContourLines/CL_parameters_dialog.png)
2525

2626
### Smoothing radius
2727

2828
To find the "vector field of an image", plugin calculates convolution of image with [derivative of Gaussian](http://campar.in.tum.de/Chair/HaukeHeibelGaussianDerivatives) 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.
2929

30-
http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3.png> <http://katpyxa.info/software/ContourLines/smoothing_10_line_0.05_distance_3.png
30+
![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3.png) ![](https://katpyxa.info/software/ContourLines/smoothing_10_line_0.05_distance_3.png)
3131

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

3434
### Line integration step
3535

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

38-
http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3.png> <http://katpyxa.info/software/ContourLines/smoothing_2_line_0.5_distance_3.png
38+
![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3.png) ![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.5_distance_3.png)
3939

4040
### Distance between lines
4141

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

44-
http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3.png> <http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_10.png
44+
![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3.png) ![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_10.png)
4545

4646
### Stop line at fraction of distance
4747

4848
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.
4949

50-
http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_x.png> <http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_single_color_end_0.1.png
50+
![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_x.png) ![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_single_color_end_0.1.png)
5151

5252
### Use single color
5353

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

56-
http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_single_color.png
56+
![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_single_color.png)
5757

5858
### Use color lookup tables (LUT)
5959

6060
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.
6161

62-
http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3.png> <http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_not_inverted_thermal.png
62+
![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3.png) ![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_not_inverted_thermal.png)
6363

6464
### Remove open contours
6565

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

68-
http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_x.png> <http://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_single_color_closed_only.png
68+
![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_x.png) ![](https://katpyxa.info/software/ContourLines/smoothing_2_line_0.05_distance_3_single_color_closed_only.png)
6969

7070
## Updates history
7171

0 commit comments

Comments
 (0)