<div dir="ltr"><span style="color: rgb(192, 192, 192); font-family: courier new,monospace;"><span style="color: rgb(51, 51, 255);">Hi all,</span><br style="color: rgb(51, 51, 255);"><br style="color: rgb(51, 51, 255);"><span style="color: rgb(51, 51, 255);">I am getting &quot;ERROR: In C:\vtk-5.6.0\GUISupport\Qt\QVTKWidget.cxx, line 968<br>
QVTKInteractor (0x3626430): QVTKInteractor cannot control the event loop.&quot; error when I try to render the images with a checkerwidget.<br><br>Here is the code, I use QtCreator for this<br>   </span><br><br><br>  </span><span style="font-family: courier new,monospace;">vtkSmartPointer</span><span style="color: rgb(0, 0, 0); font-family: courier new,monospace;">&lt;</span><span style="font-family: courier new,monospace;">vtkJPEGReader</span><span style="color: rgb(0, 0, 0); font-family: courier new,monospace;">&gt;</span><span style="color: rgb(192, 192, 192); font-family: courier new,monospace;"> </span><span style="font-family: courier new,monospace;">jPEGReader1</span><span style="color: rgb(192, 192, 192); font-family: courier new,monospace;"> </span><span style="color: rgb(0, 0, 0); font-family: courier new,monospace;">=</span>
<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkJPEGReader<span style="color: rgb(0, 0, 0);">&gt;::</span>New<span style="color: rgb(0, 0, 0);">();</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">     </span>vtkStdString<span style="color: rgb(192, 192, 192);"> </span>fname1<span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 128, 0);">&quot;C:\\BlueHills.jpg&quot;</span><span style="color: rgb(0, 0, 0);">;</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">    </span> jPEGReader1<span style="color: rgb(0, 0, 0);">-&gt;</span>SetFileName<span style="color: rgb(0, 0, 0);">(</span>fname1<span style="color: rgb(0, 0, 0);">);</span></pre>


<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">      </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkJPEGReader<span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(192, 192, 192);"> </span>jPEGReader2<span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 0);">=</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkJPEGReader<span style="color: rgb(0, 0, 0);">&gt;::</span>New<span style="color: rgb(0, 0, 0);">();</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">      </span>vtkStdString<span style="color: rgb(192, 192, 192);"> </span>fname2<span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 128, 0);">&quot;C:\\Sunset.jpg&quot;</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 0);">;</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">      </span>jPEGReader2<span style="color: rgb(0, 0, 0);">-&gt;</span>SetFileName<span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 0);">(</span>fname2<span style="color: rgb(0, 0, 0);">);</span></pre>


<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">      </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkImageCheckerboard<span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(192, 192, 192);"> </span>checkerboardFilter<span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 0);">=</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkImageCheckerboard<span style="color: rgb(0, 0, 0);">&gt;::</span>New<span style="color: rgb(0, 0, 0);">();</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">      </span>checkerboardFilter<span style="color: rgb(0, 0, 0);">-&gt;</span>SetInput<span style="color: rgb(0, 0, 0);">(</span><span style="color: rgb(0, 0, 128);">0</span><span style="color: rgb(0, 0, 0);">,</span><span style="color: rgb(192, 192, 192);"> </span>jPEGReader1<span style="color: rgb(0, 0, 0);">-&gt;</span>GetOutput<span style="color: rgb(0, 0, 0);">());</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">      </span>checkerboardFilter<span style="color: rgb(0, 0, 0);">-&gt;</span>SetInput<span style="color: rgb(0, 0, 0);">(</span><span style="color: rgb(0, 0, 128);">1</span><span style="color: rgb(0, 0, 0);">,</span><span style="color: rgb(192, 192, 192);"> </span>jPEGReader2<span style="color: rgb(0, 0, 0);">-&gt;</span>GetOutput<span style="color: rgb(0, 0, 0);">());</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">      </span>checkerboardFilter<span style="color: rgb(0, 0, 0);">-&gt;</span>SetNumberOfDivisions<span style="color: rgb(0, 0, 0);">(</span><span style="color: rgb(0, 0, 128);">3</span><span style="color: rgb(0, 0, 0);">,</span><span style="color: rgb(0, 0, 128);">3</span><span style="color: rgb(0, 0, 0);">,</span><span style="color: rgb(0, 0, 128);">1</span><span style="color: rgb(0, 0, 0);">);<br>
<br></span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">      </span><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">Create</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">the</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">RenderWindow,</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">Renderer</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">and</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">both</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">Actors</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span><span style="color: rgb(0, 128, 0);">//</span></pre>
<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkRenderer<span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(192, 192, 192);"> </span>ren1<span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 0);">=</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">          </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkRenderer<span style="color: rgb(0, 0, 0);">&gt;::</span>New<span style="color: rgb(0, 0, 0);">();</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkRenderWindow<span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(192, 192, 192);"> </span>renWin<span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 0);">=</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">          </span>ui<span style="color: rgb(0, 0, 0);">-&gt;</span>qvtkWidget<span style="color: rgb(0, 0, 0);">-&gt;</span>GetRenderWindow<span style="color: rgb(0, 0, 0);">();</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>renWin<span style="color: rgb(0, 0, 0);">-&gt;</span>AddRenderer<span style="color: rgb(0, 0, 0);">(</span>ren1<span style="color: rgb(0, 0, 0);">);</span></pre>



<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">                </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkImageActor<span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(192, 192, 192);"> </span>checkerActor<span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 0);">=</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">          </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkImageActor<span style="color: rgb(0, 0, 0);">&gt;::</span>New<span style="color: rgb(0, 0, 0);">();</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>checkerActor<span style="color: rgb(0, 0, 0);">-&gt;</span>SetInput<span style="color: rgb(0, 0, 0);">(</span>checkerboardFilter<span style="color: rgb(0, 0, 0);">-&gt;</span>GetOutput<span style="color: rgb(0, 0, 0);">());<br>
<br></span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">VTK</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">widgets</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">consist</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">of</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">two</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">parts:</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">the</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">widget</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">part</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">that</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">handles</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">event</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">processing;</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">and</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">the</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">widget</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">representation</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">that</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">defines</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">how</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">the</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">widget</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">appears</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">in</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">the</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">scene</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">(i.e.,</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">matters</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">pertaining</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">to</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">geometry).</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkCheckerboardWidget<span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(192, 192, 192);"> </span>checkerWidget<span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 0);">=</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">          </span>vtkSmartPointer<span style="color: rgb(0, 0, 0);">&lt;</span>vtkCheckerboardWidget<span style="color: rgb(0, 0, 0);">&gt;::</span>New<span style="color: rgb(0, 0, 0);">();</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>checkerWidget<span style="color: rgb(0, 0, 0);">-&gt;</span>SetInteractor<span style="color: rgb(0, 0, 0);">(</span>ui<span style="color: rgb(0, 0, 0);">-&gt;</span>qvtkWidget<span style="color: rgb(0, 0, 0);">-&gt;</span>GetInteractor<span style="color: rgb(0, 0, 0);">());</span></pre>


<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>vtkCheckerboardRepresentation<span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 0);">*</span>checkerWidgetRep<span style="color: rgb(0, 0, 0);">=</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">          </span><span style="color: rgb(128, 128, 0);">static_cast</span><span style="color: rgb(0, 0, 0);">&lt;</span>vtkCheckerboardRepresentation<span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 0);">*&gt;</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">          </span><span style="color: rgb(0, 0, 0);">(</span>checkerWidget<span style="color: rgb(0, 0, 0);">-&gt;</span>GetRepresentation<span style="color: rgb(0, 0, 0);">());</span></pre>


<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>checkerWidgetRep<span style="color: rgb(0, 0, 0);">-&gt;</span>SetImageActor<span style="color: rgb(0, 0, 0);">(</span>checkerActor<span style="color: rgb(0, 0, 0);">);</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>checkerWidgetRep<span style="color: rgb(0, 0, 0);">-&gt;</span>SetCheckerboard<span style="color: rgb(0, 0, 0);">(</span>checkerboardFilter<span style="color: rgb(0, 0, 0);">);<br>
<br></span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">Add</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">the</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">actors</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">to</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">the</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">renderer,</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">set</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">the</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">background</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">and</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">size</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span><span style="color: rgb(0, 128, 0);">//</span></pre>
<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>ren1<span style="color: rgb(0, 0, 0);">-&gt;</span>AddActor<span style="color: rgb(0, 0, 0);">(</span>checkerActor<span style="color: rgb(0, 0, 0);">);</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>ren1<span style="color: rgb(0, 0, 0);">-&gt;</span>SetBackground<span style="color: rgb(0, 0, 0);">(</span><span style="color: rgb(0, 0, 128);">0.1</span><span style="color: rgb(0, 0, 0);">,</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 128);">0.2</span><span style="color: rgb(0, 0, 0);">,</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 128);">0.4</span><span style="color: rgb(0, 0, 0);">);</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>renWin<span style="color: rgb(0, 0, 0);">-&gt;</span>SetSize<span style="color: rgb(0, 0, 0);">(</span><span style="color: rgb(0, 0, 128);">300</span><span style="color: rgb(0, 0, 0);">,</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 0, 128);">300</span><span style="color: rgb(0, 0, 0);">);</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>renWin<span style="color: rgb(0, 0, 0);">-&gt;</span>SetInteractor<span style="color: rgb(0, 0, 0);">(</span>ui<span style="color: rgb(0, 0, 0);">-&gt;</span>qvtkWidget<span style="color: rgb(0, 0, 0);">-&gt;</span>GetInteractor<span style="color: rgb(0, 0, 0);">());<br>
<br></span></pre>
<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">render</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">the</span><span style="color: rgb(192, 192, 192);"> </span><span style="color: rgb(0, 128, 0);">image</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span><span style="color: rgb(0, 128, 0);">//</span></pre>
<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>ui<span style="color: rgb(0, 0, 0);">-&gt;</span>qvtkWidget<span style="color: rgb(0, 0, 0);">-&gt;</span>GetInteractor<span style="color: rgb(0, 0, 0);">()-&gt;</span>Initialize<span style="color: rgb(0, 0, 0);">();</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>ui<span style="color: rgb(0, 0, 0);">-&gt;</span>qvtkWidget<span style="color: rgb(0, 0, 0);">-&gt;</span>show<span style="color: rgb(0, 0, 0);">();//or Render();</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">        </span>checkerWidget<span style="color: rgb(0, 0, 0);">-&gt;</span>On<span style="color: rgb(0, 0, 0);">();</span></pre>

<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><span style="color: rgb(192, 192, 192);">      </span>  ui<span style="color: rgb(0, 0, 0);">-&gt;</span>qvtkWidget<span style="color: rgb(0, 0, 0);">-&gt;</span>GetInteractor<span style="color: rgb(0, 0, 0);">()-&gt;</span>Start<span style="color: rgb(0, 0, 0);">();<br>
<br><br>Thank you,<br><br>Jothy<br></span></pre>
<pre style="margin: 0px; text-indent: 0px; font-family: courier new,monospace;"><br></pre></div>