Mercurial > hg > orthanc
annotate Resources/Samples/OrthancClient/Basic/main.cpp @ 996:cf52f3bcb2b3 lua-scripting
clarification of Lua classes wrt multithreading
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 03 Jul 2014 16:27:16 +0200 |
parents | de18e90d5507 |
children | 6e7e5ed91c2d |
rev | line source |
---|---|
531 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
689 | 3 * Copyright (C) 2012-2014 Medical Physics Department, CHU of Liege, |
531 | 4 * Belgium |
5 * | |
6 * Permission is hereby granted, free of charge, to any person | |
7 * obtaining a copy of this software and associated documentation | |
8 * files (the "Software"), to deal in the Software without | |
9 * restriction, including without limitation the rights to use, copy, | |
10 * modify, merge, publish, distribute, sublicense, and/or sell copies | |
11 * of the Software, and to permit persons to whom the Software is | |
12 * furnished to do so, subject to the following conditions: | |
13 * | |
14 * The above copyright notice and this permission notice shall be | |
15 * included in all copies or substantial portions of the Software. | |
16 * | |
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | |
20 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | |
21 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | |
22 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | |
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
24 * SOFTWARE. | |
25 **/ | |
26 | |
27 | |
28 #include <iostream> | |
588
a0001c222b32
refactoring of samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
531
diff
changeset
|
29 #include <orthanc/OrthancCppClient.h> |
531 | 30 |
31 int main() | |
32 { | |
33 try | |
34 { | |
588
a0001c222b32
refactoring of samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
531
diff
changeset
|
35 // The following explicit initialization is not required, except |
a0001c222b32
refactoring of samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
531
diff
changeset
|
36 // if you wish to specify the full path to the shared library |
a0001c222b32
refactoring of samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
531
diff
changeset
|
37 OrthancClient::Initialize(); |
531 | 38 |
39 // Display the content of the local Orthanc instance | |
40 OrthancClient::OrthancConnection orthanc("http://localhost:8042"); | |
41 | |
42 for (unsigned int i = 0; i < orthanc.GetPatientCount(); i++) | |
43 { | |
591 | 44 OrthancClient::Patient patient(orthanc.GetPatient(i)); |
531 | 45 std::cout << "Patient: " << patient.GetId() << std::endl; |
46 | |
47 for (unsigned int j = 0; j < patient.GetStudyCount(); j++) | |
48 { | |
591 | 49 OrthancClient::Study study(patient.GetStudy(j)); |
531 | 50 std::cout << " Study: " << study.GetId() << std::endl; |
51 | |
52 for (unsigned int k = 0; k < study.GetSeriesCount(); k++) | |
53 { | |
591 | 54 OrthancClient::Series series(study.GetSeries(k)); |
531 | 55 std::cout << " Series: " << series.GetId() << std::endl; |
56 | |
986 | 57 if (series.Is3DImage()) |
58 { | |
59 std::cout << " This is a 3D image whose voxel size is " | |
60 << series.GetVoxelSizeX() << " x " | |
61 << series.GetVoxelSizeY() << " x " | |
62 << series.GetVoxelSizeZ() << ", and slice thickness is " | |
63 << series.GetSliceThickness() << std::endl; | |
64 } | |
65 | |
531 | 66 for (unsigned int l = 0; l < series.GetInstanceCount(); l++) |
67 { | |
68 std::cout << " Instance: " << series.GetInstance(l).GetId() << std::endl; | |
728
d380222b4c2a
Load a raw tag from the DICOM file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
69 |
d380222b4c2a
Load a raw tag from the DICOM file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
70 // Load and display some raw DICOM tag |
d380222b4c2a
Load a raw tag from the DICOM file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
71 series.GetInstance(l).LoadTagContent("0020-000d"); |
d380222b4c2a
Load a raw tag from the DICOM file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
72 std::cout << " SOP instance UID: " << series.GetInstance(l).GetLoadedTagContent() << std::endl; |
531 | 73 } |
74 } | |
75 } | |
76 } | |
77 | |
588
a0001c222b32
refactoring of samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
531
diff
changeset
|
78 OrthancClient::Finalize(); |
a0001c222b32
refactoring of samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
531
diff
changeset
|
79 |
531 | 80 return 0; |
81 } | |
656 | 82 catch (OrthancClient::OrthancClientException& e) |
531 | 83 { |
84 std::cerr << "EXCEPTION: [" << e.What() << "]" << std::endl; | |
85 return -1; | |
86 } | |
87 } |