Пример #1
0
        private void medianFilterToolStripMenuItem_Click(object sender, EventArgs e)
        {
            VtkControl.SetMedianFilter(ref VtkControl.RectPolyData, TestForm.imageRect);

            VtkControl.SetVertexGlyph(VtkControl.RectPolyData);

            VtkControl.UpdateHSection(VtkControl.HSectionNum, TestForm.imageRect);

            VtkControl.UpdateVSection(VtkControl.VSectionNum, TestForm.imageRect);


            renWinControl3D.RenderWindow.Render();
        }
Пример #2
0
 private void toolStripButtonSectionRowDec_Click(object sender, EventArgs e)
 {
     //VtkControl.UpdateHSection(VtkControl.HSectionNum -= 10);
     VtkControl.UpdateHSection(VtkControl.HSectionNum -= 5, TestForm.imageRect);
     VtkControl.UpdateSectionImage(TestForm.imageRect);
 }
Пример #3
0
 private void toolStripButtonResetRow_Click(object sender, EventArgs e)
 {
     VtkControl.UpdateHSection(VtkControl.HSectionNum = TestForm.imageRect.Height / 2, TestForm.imageRect);
     VtkControl.UpdateSectionImage(TestForm.imageRect);
 }