I'm trying to implement this example.
DicomFile df;
VoxelGrid vt ;
if (openFileDialog1.ShowDialog () == DialogResult.OK)
{
df = new DicomFile (openFileDialog1.FileName);
vt = new VoxelGrid (df);
pictureBox1.Image = vt.getImage();
}
The problem is that it does not find the component VoxelGrid in your dll (EvilDicom), there are only a component called Voxel and does not work as the tutorial is asking, is there any version change EvilDicom 0,04 or need to use another component to add the image in my pictureBox ?