clearcanvas

Load Dicom image and display it - using ClearCanvas library

对着背影说爱祢 提交于 2020-02-12 08:43:00
问题 This is a very narrow and specific question, but I know there are someone else out there using this, so I'll keep my fingers crossed and hope anyone of you pics this question up. I'm working on a WPF application where one part of it is a Dicom viewer. We'd like to use a 3rd party component to handle the Dicom stuff, and ClearCanvas is the one we've got the best impression of this far. We're able to load a Dicom file and fetch the attributes, but we're having problems putting the image data on

Load Dicom image and display it - using ClearCanvas library

扶醉桌前 提交于 2020-02-12 08:41:14
问题 This is a very narrow and specific question, but I know there are someone else out there using this, so I'll keep my fingers crossed and hope anyone of you pics this question up. I'm working on a WPF application where one part of it is a Dicom viewer. We'd like to use a 3rd party component to handle the Dicom stuff, and ClearCanvas is the one we've got the best impression of this far. We're able to load a Dicom file and fetch the attributes, but we're having problems putting the image data on

How to save image as DICOM

試著忘記壹切 提交于 2020-01-13 10:36:29
问题 I need to save JPEG image as a DICOM using c# and some free library. I read a lot of topics where it was described how to do the opposite, but I couldn't find anywhere how to perform what I need. The best I could achieve is to save image using ClearCanvas, but it gets distorted. DicomFile dicomFile = new DicomFile(); dicomFile.MediaStorageSopClassUid = SopClass.DigitalXRayImageStorageForPresentation.Uid; dicomFile.DataSet[DicomTags.SopClassUid].SetStringValue(SopClass

ClearCanvas SDK

两盒软妹~` 提交于 2019-12-11 09:00:58
问题 I would like to experiment with the ClearCanvas SDK inside of another project. I am not looking to make any changes to the code whatsoever. So how do I get this code and include it in another project? Do I need to Build it via the Github instructions or can I just download the zip, open in VS and reference the CC solution? Here’s a little detail to what I would like to do. I am looking to use CC to read dicom tags and collect the dat from those tags. Initially, that is all I’d like to do with

How to get an image from a given dicom file using clearcanvas libraries in c#

匆匆过客 提交于 2019-12-11 04:35:08
问题 Can you please help me in extracting image(binary data) from a dicom file. 回答1: The question is not completely clear. If you want a bitmap for display purposes, then this is basically a duplicate of this question. Please see the accepted answer. If you are just trying to extract the pixel data into a byte array, then you can use code like this: DicomFile theFile = new DicomFile("c:\tmp.dcm"); theFile.Load(); byte[] thePixels = theFile.DataSet[DicomTags.PixelData].Values; 来源: https:/

Encode JPG image file as DICOM PixelData using ClearCanvas

喜你入骨 提交于 2019-12-11 02:43:23
问题 I have a set of JPG images that are actually slices of a CT scan, which I want to reconstruct into DICOM image files and import into a PACS. I am using ClearCanvas, and have set all of the requisite tags (and confirmed them by converting one of my JPG files to DICOM using a proprietary application to make sure they are the same). I am just not sure how I should be processing my JPG file to get it into the PixelData tag? Currently I am converting it to a Byte array, on advice from ClearCanvas

How to downgrade 16 bit depth gray scale to 8 bit depth image (rgb 24) [closed]

大兔子大兔子 提交于 2019-12-08 15:32:07
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed last year . So I am working in a WPF project. I have two DICOM Images(X-ray(16 bits gray scale) Image and an Optical(24 bit RGB) Image). What I want I wanna blend the two image one on the another by changing opacity. Its like increase or decrease opacity between the two images. If I wanna blend these two images,

Sending dicom file to a remote AE using c# in visual studio 2010

 ̄綄美尐妖づ 提交于 2019-12-07 17:40:15
问题 My goal is to send a dicom file to a remote AE using c# in visual studio 2010, I plan to implement the clearcanvas library, I have divided the task into 5 parts: // //1 initiate tcp\ip connection // //2 negotiate the association parameters to agree what can be done // //3 send the dicom object // //4 close the association // //5 close the TCP/IP connection I know storagescu will be involved in the sending part3), I tried looking things up on clearcanvas forum, the codes do not make much sense

Sending dicom file to a remote AE using c# in visual studio 2010

∥☆過路亽.° 提交于 2019-12-06 03:52:54
My goal is to send a dicom file to a remote AE using c# in visual studio 2010, I plan to implement the clearcanvas library, I have divided the task into 5 parts: // //1 initiate tcp\ip connection // //2 negotiate the association parameters to agree what can be done // //3 send the dicom object // //4 close the association // //5 close the TCP/IP connection I know storagescu will be involved in the sending part3), I tried looking things up on clearcanvas forum, the codes do not make much sense yet, so I do not know where to start from exactly, can anyone who had experience in sending dicom file

Load Dicom image and display it - using ClearCanvas library

让人想犯罪 __ 提交于 2019-11-30 04:03:03
This is a very narrow and specific question, but I know there are someone else out there using this, so I'll keep my fingers crossed and hope anyone of you pics this question up. I'm working on a WPF application where one part of it is a Dicom viewer. We'd like to use a 3rd party component to handle the Dicom stuff, and ClearCanvas is the one we've got the best impression of this far. We're able to load a Dicom file and fetch the attributes, but we're having problems putting the image data on the Source property of an Image control to show it. Anyone with hints on how to make this happen? Here