Search found 4 matches
- 2018-04-12T02:10:25-07:00
- Forum: Users
- Topic: Reading DICOM for first time users
- Replies: 7
- Views: 5582
Re: Reading DICOM for first time users
Hi everyone, i've just realised my dicom file is corrupted and now works with another dicom file. Thanks for the help everyone
- 2018-04-11T21:51:42-07:00
- Forum: Users
- Topic: Reading DICOM for first time users
- Replies: 7
- Views: 5582
Re: Reading DICOM for first time users
When trying to read i've got an error.
code
#include <Magick++.h>
#include <iostream>
using namespace std;
using namespace Magick;
int main(int argc, char **argv)
{
// Initialise ImageMagick library
InitializeMagick(*argv);
Image image("DCM0000.dcm");
return 0;
}
error
Unhandled ...
code
#include <Magick++.h>
#include <iostream>
using namespace std;
using namespace Magick;
int main(int argc, char **argv)
{
// Initialise ImageMagick library
InitializeMagick(*argv);
Image image("DCM0000.dcm");
return 0;
}
error
Unhandled ...
- 2018-04-11T20:22:33-07:00
- Forum: Users
- Topic: Reading DICOM for first time users
- Replies: 7
- Views: 5582
Re: Reading DICOM for first time users
Hi,
My IM version is ImageMagick-7.0.7-Q16. I'm implementing Magick++ in Visual Studio 2017 (C++). The code i've been trying to execute is below; However i've read threads that defineSet(). Appreciate any help for novices like me. Thanks.
#include <Magick++.h>
using namespace std;
using namespace ...
My IM version is ImageMagick-7.0.7-Q16. I'm implementing Magick++ in Visual Studio 2017 (C++). The code i've been trying to execute is below; However i've read threads that defineSet(). Appreciate any help for novices like me. Thanks.
#include <Magick++.h>
using namespace std;
using namespace ...
- 2018-04-11T10:09:15-07:00
- Forum: Users
- Topic: Reading DICOM for first time users
- Replies: 7
- Views: 5582
Reading DICOM for first time users
Hi, I'm a first time user of ImageMagick. I've read only several threads that it is possible to read dicom files and defineSet() must be used.
How should I fill in defineSet? It says the type, key, flag.
so should it be? My issue is what should xx, yy, zz values should be?
Image image;
image ...
How should I fill in defineSet? It says the type, key, flag.
so should it be? My issue is what should xx, yy, zz values should be?
Image image;
image ...