You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mevislab.github.io/content/tutorials/image_processing/image_processing6.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ We now want to view the CT images and the RTSTRUCT data together. The module `Di
73
73
74
74
You have to select the correct index for the RTSTRUCT. In our example it is index 2.
75
75
76
-
Add `DicomImportExtraOutput`module as shown in the below :
76
+
Add `DicomImportExtraOutput`module as shown in the figure below :
77
77
78
78

79
79
@@ -121,21 +121,21 @@ Add the `SoCSO3DRenderer` module and connect it to the `ExtractRTStruc`t module.
121
121
122
122
Add the `SoExaminerViewer` module and connect it to the `SoCSO3DRenderer` module.
123
123
( The `SoExaminerViewer` will allow you to view the 3D contours. You can rotate, zoom, and move around the 3D image.)
124
-
The following figure is the network and the result:
124
+
The following figure is the network and the result:
125
125
126
126

127
127
128
128
129
129
130
130
### **Visualizing RTDOSE as a Color Overlay Using LUT**
131
131
132
-
Now we need to add another `DicomImportExtraOutput` module to import multiple DICOM objects ,You have to select the right index for the example it is index 4 thats mean RTDOSE 199*115*147*1 . Add `MinMaxScan`module to scan the input image and updates the minimum and maximum values of the output image, and connect it with the `DicomImportExtraOutput`
132
+
Now we need to add another `DicomImportExtraOutput` module to import multiple DICOM objects, You have to select the right index for the example it is index 4 thats mean RTDOSE 199*115*147*1 . Add `MinMaxScan`module to scan the input image and updates the minimum and maximum values of the output image, and connect it with the `DicomImportExtraOutput`
133
133

134
134
135
135
Add ` Histogram` module to calculate the image's intensity distribution, and connect it with `MinMaxScan`.
136
136
137
137
The `Histogram` module computes the image's intensity distribution, and is connected to the `SoLUTEditor` to modify the lookup table (LUT). The LUT is then passed to the `SoGroup`, which is connected to the `SoView2DOverlay` to blend the 2D image overlay in a 2D viewer. The `SoLUTEditor` allows interactive editing of the LUT, while `SoView2DOverlay` facilitates overlaying the modified image in a 2D scene. Note that `SoView2DOverlay` is for 2D blending, and `GVROrthoOverlay` should be used for OrthoView2D.
138
-
The below figure is shows connnection of the network:
138
+
The below figure shows connnection of the network:
139
139
140
140

141
141
@@ -146,7 +146,7 @@ Now we should update the `Histogram` by pressing the update button on it.
Finally, when you press `View2D`, it will display a 2D anatomical image with a colored RTDOSE overlay, where the dose distribution is visualized using a customized Lookup Table (LUT) that clearly highlights the radiation intensity levels within the body.
159
+
Finally, when you press `View2D`, it will display a 2D anatomical image with a colored RTDOSE overlay, where the dose distribution is visualized using a customized Lookup Table (LUT) that clearly highlights the radiation intensity levels within the body.
160
160
161
161

162
162
@@ -165,7 +165,7 @@ Finally, when you press `View2D `, it will display a 2D anatomical image with a
165
165
166
166
## **Summary**
167
167
168
-
* Load DICOM RT data including RTDOSE and RTSTRUCT.
168
+
* Load DICOM RT data including RTDOSE and RTSTRUCT.
169
169
* Visualize RTSTRUCTs with `ExtractRTStruct` and `CSOLabelRenderer`.
170
170
* Display contour labels using `CSOLabelRenderer`.
171
171
* View images in 2D (`View2D`) and 3D (`SoExaminerViewer`).
0 commit comments