Blane Bunderson
Blane Bunderson
I am having the same issue. Do you have a command line argument on the installer that will do an extract only? It is something inside the installer package that...
We have been working with DICOM for 10 years and honestly this year ran into an issue with a modality that has very non-square pixels. Most modalities have square or...
I proposed possibly another overload for the RenderImage(int frame = 0, bool applyAspectRatio = false) to maintain compatibility. Also other libraries typically have a Width and Height and then a...
It may be worth creating a public AspectRatio property. That is what we do in our code, because realistically there are several fields that "PixelSpacing" can exist. I can try...
I came up with a "quick and dirty" way of doing it using WriteableBitmapEx. ``` private BitmapSource CreateBitmap(int frameIndex) { if(this._dicomImage == null) { return null; } ImageManager.SetImplementation(WPFImageManager.Instance); WriteableBitmap result;...