annotate OrthancFramework/Sources/Images/Image.cpp @ 5044:6fed78e13233

Refactored DicomMap to handle sequences when needed
author Alain Mazy <am@osimis.io>
date Tue, 28 Jun 2022 17:45:09 +0200
parents 43e613a7756b
children 0ea402b4d901
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2084
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 /**
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2 * Orthanc - A Lightweight, RESTful DICOM Store
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
4 * Department, University Hospital of Liege, Belgium
4870
43e613a7756b upgrade to year 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4831
diff changeset
5 * Copyright (C) 2017-2022 Osimis S.A., Belgium
43e613a7756b upgrade to year 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4831
diff changeset
6 * Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
2084
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
7 *
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
8 * This program is free software: you can redistribute it and/or
4119
bf7b9edf6b81 re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4044
diff changeset
9 * modify it under the terms of the GNU Lesser General Public License
bf7b9edf6b81 re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4044
diff changeset
10 * as published by the Free Software Foundation, either version 3 of
bf7b9edf6b81 re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4044
diff changeset
11 * the License, or (at your option) any later version.
2084
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
12 *
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
13 * This program is distributed in the hope that it will be useful, but
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
4119
bf7b9edf6b81 re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4044
diff changeset
16 * Lesser General Public License for more details.
2084
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
17 *
4119
bf7b9edf6b81 re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4044
diff changeset
18 * You should have received a copy of the GNU Lesser General Public
bf7b9edf6b81 re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4044
diff changeset
19 * License along with this program. If not, see
bf7b9edf6b81 re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4044
diff changeset
20 * <http://www.gnu.org/licenses/>.
2084
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
21 **/
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
22
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
23
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
24 #include "Image.h"
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
25
3712
2a170a8f1faf replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3640
diff changeset
26 #include "../Compatibility.h"
2084
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
27 #include "ImageProcessing.h"
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
28
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
29 #include <memory>
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
30
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
31 namespace Orthanc
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
32 {
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
33 Image::Image(PixelFormat format,
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
34 unsigned int width,
2107
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2084
diff changeset
35 unsigned int height,
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2084
diff changeset
36 bool forceMinimalPitch) :
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2084
diff changeset
37 image_(format, width, height, forceMinimalPitch)
2084
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
38 {
2861
9b4251721f22 ImageAccessor now non-copyable
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2447
diff changeset
39 ImageAccessor accessor;
9b4251721f22 ImageAccessor now non-copyable
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2447
diff changeset
40 image_.GetWriteableAccessor(accessor);
9b4251721f22 ImageAccessor now non-copyable
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 2447
diff changeset
41
2084
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
42 AssignWritable(format, width, height, accessor.GetPitch(), accessor.GetBuffer());
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
43 }
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
44
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
45
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
46 Image* Image::Clone(const ImageAccessor& source)
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
47 {
3712
2a170a8f1faf replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 3640
diff changeset
48 std::unique_ptr<Image> target(new Image(source.GetFormat(), source.GetWidth(), source.GetHeight(), false));
2084
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
49 ImageProcessing::Copy(*target, source);
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
50 return target.release();
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
51 }
20a001ea4aa2 Image::Clone()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
52 }