comparison Framework/Deprecated/Toolbox/ParallelSlices.h @ 811:ffec76a5f7eb

deprecating ParallelSlices
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 28 May 2019 18:21:00 +0200
parents Framework/Toolbox/ParallelSlices.h@fa5febe0f0c2
children 2d8ab34c8c91
comparison
equal deleted inserted replaced
810:7608e8107aa1 811:ffec76a5f7eb
1 /**
2 * Stone of Orthanc
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium
6 *
7 * This program is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU Affero General Public License
9 * as published by the Free Software Foundation, either version 3 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 **/
20
21
22 #pragma once
23
24 #include "../../Toolbox/CoordinateSystem3D.h"
25 #include "../../Volumes/VolumeImageGeometry.h"
26
27 namespace Deprecated
28 {
29 class ParallelSlices : public boost::noncopyable
30 {
31 private:
32 OrthancStone::Vector normal_;
33 std::vector<OrthancStone::CoordinateSystem3D*> slices_;
34
35 ParallelSlices& operator= (const ParallelSlices& other); // Forbidden
36
37 void Clear();
38
39 public:
40 ParallelSlices();
41
42 ParallelSlices(const ParallelSlices& other);
43
44 ~ParallelSlices();
45
46 const OrthancStone::Vector& GetNormal() const
47 {
48 return normal_;
49 }
50
51 void AddSlice(const OrthancStone::CoordinateSystem3D& slice);
52
53 void AddSlice(const OrthancStone::Vector& origin,
54 const OrthancStone::Vector& axisX,
55 const OrthancStone::Vector& axisY);
56
57 size_t GetSliceCount() const
58 {
59 return slices_.size();
60 }
61
62 const OrthancStone::CoordinateSystem3D& GetSlice(size_t index) const;
63
64 bool ComputeClosestSlice(size_t& closestSlice,
65 double& closestDistance,
66 const OrthancStone::Vector& origin) const;
67
68 ParallelSlices* Reverse() const;
69
70 static ParallelSlices* FromVolumeImage(const OrthancStone::VolumeImageGeometry& geometry,
71 OrthancStone::VolumeProjection projection);
72 };
73 }