ketan g

Show:

What's happening?

  • Followup: RE: Export image from .dcm file

    Thanks you very much. According to you dicom file contain different type of image how can i find the type of image in dcm file. ? and if no type is save then default type is which? Thanks and Regards. Ketan.

    2009-03-27 09:40:04 UTC in DICOM#

  • Followup: RE: Export image from .dcm file

    Thanks for the reply. I make following change. Stream ins = null; DcmParser parser = null; Dataset ds = null; FileInfo objFileinfo = new FileInfo(@"D:\Dicom files\349211.DCM"); ins = new BufferedStream(new FileStream(objFileinfo.FullName, FileMode.Open, FileAccess.Read)); parser = new DcmParser(ins); FileFormat format = parser.DetectFileFormat(); if (format != null) {.

    2009-03-27 08:54:17 UTC in DICOM#

  • Followup: RE: Export image from .dcm file

    Main problem: I want to generate .jpg from .dcm file I load the dicom image from the following code. Stream ins = null; DcmParser parser = null; Dataset ds = null; ins = new BufferedStream(new FileStream(file.FullName, FileMode.Open, FileAccess.Read)); parser = new DcmParser(ins); FileFormat format = parser.DetectFileFormat(); if (format != null) { ds = new...

    2009-03-27 05:38:49 UTC in DICOM#

  • Export image from .dcm file

    I load the dicom image from the following code. Stream ins = null; DcmParser parser = null; Dataset ds = null; ins = new BufferedStream(new FileStream(file.FullName, FileMode.Open, FileAccess.Read)); parser = new DcmParser(ins); FileFormat format = parser.DetectFileFormat(); if (format != null) { ds = new Dataset(); parser.DcmHandler = ds.DcmHandler; parser.Parse.

    2009-03-27 05:29:36 UTC in DICOM#

  • Read patient name from .dcm file

    I have .DCM file i want to read patient's name from file's header it is possible using this dll.

    2009-03-18 16:42:47 UTC in DICOM#

About Me

  • 2009-03-18 (8 months ago)
  • 2444301
  • ketandolly2007 (My Site)
  • ketan g

Send me a message