File: SingleImageComponent.h

package info (click to toggle)
camitk 6.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 389,508 kB
  • sloc: cpp: 103,476; sh: 2,448; python: 1,618; xml: 984; makefile: 128; perl: 84; sed: 20
file content (104 lines) | stat: -rw-r--r-- 3,689 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*****************************************************************************
 * $CAMITK_LICENCE_BEGIN$
 *
 * CamiTK - Computer Assisted Medical Intervention ToolKit
 * (c) 2001-2025 Univ. Grenoble Alpes, CNRS, Grenoble INP - UGA, TIMC, 38000 Grenoble, France
 *
 * Visit http://camitk.imag.fr for more information
 *
 * This file is part of CamiTK.
 *
 * CamiTK is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * CamiTK is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with CamiTK.  If not, see <http://www.gnu.org/licenses/>.
 *
 * $CAMITK_LICENCE_END$
 ****************************************************************************/

#ifndef SINGLEIMAGEVOLUMECOMPONENT_H
#define SINGLEIMAGEVOLUMECOMPONENT_H


// -- Core stuff
#include "Component.h"
#include "Slice.h"

// -- QT stuff classes
class QMenu;

// -- VTK stuff
#include <vtkImageReslice.h>
#include <vtkWindowLevelLookupTable.h>
#include <vtkActor.h>

// -- VTK stuff classes
class vtkImageClip;

namespace camitk {
/**
 * @ingroup group_sdk_libraries_core_component_image
 *
 * @brief
 * This Component manages sub-component of the image component seen as a single orientation only
 * (axial OR sagittal OR coronal).
 *
 * It does have a Slice representation (InterfaceBitMap), not a Geometry.
 *
 * Some frame management methods (inherited from InterfaceFrame) are overriden in order to
 * ensure nothing the frame is not modified in any way at any time.
 * The orthogonal slice (axial, coronal, or sagittal) should indeed always have a transformation to
 * the parent image component equals to Id. They are "fixed" on the ImageComponent and can not move freely.
 * A change in the frame of the parent image component is therefore automatically applied to the
 * single component.
 */
class CAMITK_API SingleImageComponent : public camitk::Component {
    Q_OBJECT

public:
    /// Constructor
    SingleImageComponent(Component* parentComponent, Slice::SliceOrientation, const QString& name, vtkSmartPointer<vtkWindowLevelLookupTable> lut);

    /// Destructor
    ~SingleImageComponent() override = default;

    /// rewritten from Component so that the Component can call the ManagerComponent
    virtual void pixelPicked(double, double, double) override;

    /// rewritten to synchronize everyone
    virtual void setSelected(const bool, const bool) override;

    /// new method used to call the Component set selected
    virtual void singleImageSelected(const bool);

    /// Returns a 3D cross cursor vtkActor to show the picked voxel
    vtkSmartPointer<vtkActor> get3DCursor() override;

    /// get the slice orientation
    Slice::SliceOrientation getSliceOrientation();

protected:
    /** The concrete building of the Service (Slice in this case, for a 2D representation). */
    virtual void initRepresentation() override final;

    /// orientation of the single image component
    Slice::SliceOrientation sliceOrientation;

    /// Look up table used for this image
    vtkSmartPointer<vtkWindowLevelLookupTable> lut;

    /// @brief cursor (3D cross) actor of this slice to show the picked voxel location
    /// should be used by one viewer only, the one with the same orientation as this SingleImageComponent
    vtkSmartPointer<vtkActor> cursorActor;
};

}

#endif