Skip to content

Commit 1a35354

Browse files
committed
Fixed titles under images; fixed typos; more consistent visual language; fixed Advanced page with a workaround
1 parent a98a810 commit 1a35354

131 files changed

Lines changed: 1073 additions & 1096 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

mevislab.github.io/content/about/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Hints common mistakes or steps you should consider beforehand.
1919
{{</alert>}}
2020

2121
## Keyboard Shortcuts
22-
Keyboard shortcuts are incorporated like this: {{< keyboard "CTRL" "ALT" "2" >}}.
22+
Keyboard shortcuts are incorporated like this: {{< keyboard "Ctrl" "Alt" "2" >}}.
2323

2424
## Networks
2525
The networks shown and used in the tutorials can be found in the [Examples](examples) section of this page.

mevislab.github.io/content/contact.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ draft: false
1010
Having any questions on MeVisLab Licensing? Please contact the [MeVisLab Sales Team](mailto://sales@mevislab.de)
1111

1212
#### MeVisLab Forum
13-
Searching for a forum to ask your specific MeVisLab questions? Having trouble with functionalities? Ask [here](https://forum.mevislab.de)! Someone else might know the answer. If not - one of our developers will help you out!
13+
Searching for a forum to ask your specific MeVisLab questions? Having trouble with functionalities? Ask [here](https://forum.mevislab.de)! Someone else might know the answer. If not &mdash; one of our developers will help you out!
1414

1515
#### General Questions
1616
General questions regarding MeVisLab? Don't hesitate to contact the [MeVisLab Team](mailto://info@mevislab.de).
1717

1818
#### YouTube
19-
Also: If you haven't yet - have a look at our [YouTube Channel](https://www.youtube.com/channel/UCUGi64NseroIGjga8l7EX8g). You will find a variety of helpful tutorials provided to you by the MeVisLab Team.
19+
Also: If you haven't yet &mdash; have a look at our [YouTube Channel](https://www.youtube.com/channel/UCUGi64NseroIGjga8l7EX8g). You will find a variety of helpful tutorials provided to you by the MeVisLab Team.
2020

mevislab.github.io/content/examples/basic_mechanisms/contour_filter/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Additionally, the images are modified by a local macro module `Filter` and shown
1313

1414
In order to display the same slice (unchanged and changed), the module `SyncFloat` is used to synchronize the field value <field>startSlice</field> in both viewers. The `SyncFloat` module duplicates the value <field>Float1</field> to the field <field>Float2</field> if it differs by <field>Epsilon</field>.
1515

16-
![Screenshot](examples/basic_mechanisms/contour_filter/image.png)
16+
![Example network](examples/basic_mechanisms/contour_filter/image.png "Example network")
1717

1818
# Download
1919
You can download the example network [here](examples/basic_mechanisms/contour_filter/ContourFilter.zip)

mevislab.github.io/content/examples/basic_mechanisms/macro_modules_and_module_interaction/example1/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ category: "basic_mechanisms"
88
This example contains an entire package structure. Inside, you can find the example contour filter for which a panel was created.
99

1010
## Summary
11-
A new macro module `Filter` has been created. Initially, macro modules do not provide an own panel containing user interface elements such as buttons. The *Automatic Panel* is shown on double-clicking the module providing the name of the module.
11+
A new macro module `Filter` has been created. Initially, macro modules do not provide an own panel containing user interface elements such as buttons. The *Automatic Panel* is shown on double-clicking {{< mousebutton "left" >}} the module providing the name of the module.
1212

1313
In this example we update the *.script* file of the `Filter` module to display the <field>Kernel</field> field of the `Convolution` module within its network.
1414

mevislab.github.io/content/examples/basic_mechanisms/macro_modules_and_module_interaction/example2/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ A new macro module `IsoCSOs` is created providing two viewers in its internal ne
1212

1313
To showcase how Python functions can be implemented in MeVisLab and called from within a module, additional buttons to browse directories and create contours via the `CSOIsoGenerator` are added. Lastly, a field listener is implemented that reacts to field changes by colorizing contours when the user hovers over them with the mouse.
1414

15-
![Screenshot](examples/basic_mechanisms/macro_modules_and_module_interaction/example2/image2.png)
15+
![Example network](examples/basic_mechanisms/macro_modules_and_module_interaction/example2/image2.png "Example network")
1616

17-
![Screenshot](examples/basic_mechanisms/macro_modules_and_module_interaction/example2/image.png)
17+
![Coloring a contour with Python](examples/basic_mechanisms/macro_modules_and_module_interaction/example2/image.png "Coloring a contour with Python")
1818

1919
# Download
2020
The files need to be added to a package. You can download the example network [here](examples/basic_mechanisms/macro_modules_and_module_interaction/example2/ScriptingExample2.zip)

mevislab.github.io/content/examples/basic_mechanisms/viewer_application/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ category: "basic_mechanisms"
77
# Example 3: Creating a Simple Application
88
In this example, you will learn how to create a simple prototype application in MeVisLab including a user interface (UI) with 2D and 3D viewers.
99

10-
![Screenshot](examples/basic_mechanisms/viewer_application/image.png)
10+
![Simple application with a 2D and a 3D viewer](examples/basic_mechanisms/viewer_application/image.png "Simple application with a 2D and a 3D viewer")
1111

1212
# Download
1313
You can download the example network [here](examples/basic_mechanisms/viewer_application/viewerexample.mlab)

mevislab.github.io/content/examples/data_objects/contours/example1/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Contours are stored as Contour Segmentation Objects (CSOs) in MeVisLab.
99
This example highlights ways of creating CSOs using modules of the `SoCSOEditor` group.
1010

1111
{{<alert class="info" caption="Info">}}
12-
You may want to look at the glossary entry on [*CSOs*](glossary/#contour-segmented-objects).
12+
You may want to look at the glossary entry on [*CSOs*](glossary/#contour-segmentation-objects).
1313
{{</alert>}}
1414

1515
The `SoCSOEditor` module group contains several modules, some of which are listed right below:
@@ -30,13 +30,13 @@ The `SoCSOEditor` module group contains several modules, some of which are liste
3030
Whenever Contour Segmentation Objects are created, they are temporarily stored by and can be managed with the `CSOManager`.
3131
{{</alert>}}
3232

33-
In this example, contours are created and colors and styles of these CSOs are customized by using the `SoCSOVisualizationSettings` module.
33+
In this example, contours are created, and colors and styles of these CSOs are customized by using the `SoCSOVisualizationSettings` module.
3434

35-
![Screenshot](examples/data_objects/contours/example1/image.png)
35+
![Visualization of a spline CSO is customized](examples/data_objects/contours/example1/image.png "Visualization of a spline CSO is customized")
3636

3737
## Summary
38-
* Contours are stored as their own abstract data type called Contour Segmentation Objects (often abbreviated to *CSO*).
39-
* The `SoCSO\*Editor` module group contains several useful modules to create, interact with or modify CSOs.
38+
* Contours are stored as their own abstract data type called Contour Segmentation Objects (abbreviated to *CSO*).
39+
* The `SoCSO\*Editor` module group contains several useful modules to create, interact with, or modify CSOs.
4040
* Created CSOs are temporarily stored and can be managed using the `CSOManager`.
4141

4242
# Download

mevislab.github.io/content/examples/data_objects/contours/example2/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ In this example, semiautomatic countours are created using the `SoCSOLiveWireEdi
1212

1313
Additional contours between the manually created ones are generated by the `CSOSliceInterpolator` and added to the `CSOManager`. Different groups of contours are created for the left and right lobe of the lung and colored respectively.
1414

15-
![Screenshot](examples/data_objects/contours/example2/image.png)
15+
![Manually created CSOs are automatically interpolated](examples/data_objects/contours/example2/image.png "Manually created CSOs are automatically interpolated")
1616

1717
# Download
1818
You can download the example network [here](examples/data_objects/contours/example2/ContourExample2.mlab)

mevislab.github.io/content/examples/data_objects/contours/example3/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The module `VoxelizeCSO` is used to create a three-dimensional voxel mask of the
1414

1515
Lastly, the panel of the `View3D` module is used to visualize the voxel mask in 3D.
1616

17-
![Screenshot](examples/data_objects/contours/example3/image.png)
17+
![Manually created CSOs are automatically interpolated and shown in 2D and in 3D](examples/data_objects/contours/example3/image.png "Manually created CSOs are automatically interpolated and shown in 2D and in 3D")
1818

1919
# Download
2020
You can download the example network [here](examples/data_objects/contours/example3/ContourExample3.mlab)

mevislab.github.io/content/examples/data_objects/contours/example4/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This example shows how to add annotations to an image.
1010
## Summary
1111
In this example, the network of **Contour Example 3** is extended, so that the volume of the 3D mask generated by the `VoxelizeCSO` module is calculated. The `CalculateVolume` module counts the number of voxels in the given mask and returns the correct volume in ml. The calculated volume will be used for a custom `SoView2DAnnotation` displayed in the `View2D`.
1212

13-
![Screenshot](examples/data_objects/contours/example4/image.png)
13+
![Volume of a mask image is calculated and shown as an annoation](examples/data_objects/contours/example4/image.png "Volume of a mask image is calculated and shown as an annoation")
1414

1515
# Download
1616
You can download the example network [here](examples/data_objects/contours/example4/ContourExample4.mlab)

0 commit comments

Comments
 (0)