|
Computer Assited Medical Intervention Tool Kit
version 5.0
|
|
Go to the documentation of this file.
26 #ifndef PICKEDPIXELMAP_H
27 #define PICKEDPIXELMAP_H
31 #include <QCoreApplication>
67 void removePixel(
int id);
72 void modifyPixel(
int row);
82 void savePixelList(QString fileName);
87 void openPixelList(QString fileName);
90 QList<QVector3D>* getPixelIndexList();
93 QList<QVector3D>* getCoordIndexList();
96 QList<QVector3D>* getRealWorldList();
99 QList<double>* getPixelValueList();
105 void resetPixelList();
110 QList<QVector3D>* pixelIndexList;
113 QList<QVector3D>* coordIndexList;
116 QList<QVector3D>* realCoordList;
119 QList<double>* pixelValueList;
126 #endif // PICKEDPIXELMAP_H
QList< double > * getPixelValueList()
return the liste of pixel values
Definition: PickedPixelMap.cpp:98
#define CAMITK_WARNING_ALT(MSG)
Definition: Log.h:267
void openPixelList(QString fileName)
open a list of pixel in a given file base name (CSV format, separator = comma).
Definition: PickedPixelMap.cpp:202
void addPixel()
Allows one to add a pixel in the list using the last picked pixel.
Definition: PickedPixelMap.cpp:62
The manager of the Image Volume data. An image volume data has no concrete 3D representation,...
Definition: ImageComponent.h:77
virtual ~PickedPixelMap()
destructor
Definition: PickedPixelMap.cpp:46
QList< QVector3D > * getRealWorldList()
return the list of coordinates in real world frame
Definition: PickedPixelMap.cpp:108
#define MULTIPICKING_API
Definition: MultiPickingAPI.h:50
void removePixel(int id)
Allows one to remove one pixel in the list.
Definition: PickedPixelMap.cpp:145
PickedPixelMap(camitk::ImageComponent *)
constructor
Definition: PickedPixelMap.cpp:36
camitk::ImageComponent * getImage()
the managed ImageComponent
Definition: PickedPixelMap.cpp:264
QList< QVector3D > * getCoordIndexList()
return the list of coordinates pixel index
Definition: PickedPixelMap.cpp:94
QList< QVector3D > * getPixelIndexList()
return the list of pixel index
Definition: PickedPixelMap.cpp:103
void modifyPixel(int row)
Allows one to modify one pixel in the list.
Definition: PickedPixelMap.cpp:113
void savePixelList(QString fileName)
save the list of pixel in a given file base name (CSV format, separator = comma).
Definition: PickedPixelMap.cpp:155
This class is dedicated to manage an ImageComponent with a list of selected/picked pixels....
Definition: PickedPixelMap.h:53
void resetPixelList()
Empties the pixel list.
Definition: PickedPixelMap.cpp:269
Definition: Action.cpp:35