diff --git a/Documentation/Doxygen/DeveloperManual/Starting/GettingToKnow/Tutorial/Step01.dox b/Documentation/Doxygen/DeveloperManual/Starting/GettingToKnow/Tutorial/Step01.dox index 5c91223dea..499c7078d7 100644 --- a/Documentation/Doxygen/DeveloperManual/Starting/GettingToKnow/Tutorial/Step01.dox +++ b/Documentation/Doxygen/DeveloperManual/Starting/GettingToKnow/Tutorial/Step01.dox @@ -1,22 +1,22 @@ /** \page Step01Page MITK Tutorial - Step 1: Displaying an image \image html step1_result.png Open the Tutorial by executing StartVS_release.bat. All steps can be found among the listed projects. -The first program shows how to display an image in a 2D view. The picture above is a snapshot of the program. +The first program shows how to display an image in a 2D view. The picture above is a screenshot of the program. The program has to be executed using the image file bin/CMakeExternals/Source/MITK-Data/Pic3D.nrrd. To set the image file path in Visual Studio, right click on "Step1"-project and go to 'Properties -> Configuration Properties -> Debugging'. Now insert the image file path in the "Command Arguments" text field. Use this also in the following steps. \image html configureVisualStudioProperties.png -The code is subdivided in parts I - V. First of all a DataTree has to be created. Then data has to be read from a file which afterwards has to be put into the tree. Part IV creates a window and passes the tree to it. The last part deals with some Qt-specific initialization. +The code is divided into parts I through V. First of all a DataTree has to be created. Then data has to be read from a file which afterwards has to be put into the tree. Part IV creates a window and passes the tree to it. The last part deals with some Qt-specific initialization. \include Step1.cpp \ref Step00Page "[Previous step]" \ref Step02Page "[Next step]" \ref TutorialPage "[Main tutorial page]" */ diff --git a/Documentation/Doxygen/DeveloperManual/Starting/GettingToKnow/Tutorial/Step02.dox b/Documentation/Doxygen/DeveloperManual/Starting/GettingToKnow/Tutorial/Step02.dox index 50119d96ac..31aa2e535d 100644 --- a/Documentation/Doxygen/DeveloperManual/Starting/GettingToKnow/Tutorial/Step02.dox +++ b/Documentation/Doxygen/DeveloperManual/Starting/GettingToKnow/Tutorial/Step02.dox @@ -1,30 +1,30 @@ /** \page Step02Page MITK Tutorial - Step 2: Load one or more data sets \image html step2_result.png \li \ref Step2.cpp "Step2.cpp" \n Contains the code for this example. \dontinclude Step2.cpp This program shows how to load multiple data sets. A DataNodeFactory is used to produce nodes containing the data. The picture above shows the result of the program when reading both the image file and the surface file. In order to obtain the result the program has to be executed using the image file bin/CMakeExternals/Source/MITK-Data/Pic3D.nrrd and the surface file src/MITK/Modules/MitkExt/Testing/Data/lungs.vtk. - The code for this example equals the code of Step 1 except for part II and part III that are changed as follows: + The code for this example equals the code of Step 1 except for part II and part III which are changed as follows: \skipline Part II \until exit(2) \line } \line } \ref Step01Page "[Previous step]" \ref Step03Page "[Next step]" \ref TutorialPage "[Main tutorial page]" */