1 #ifndef SPECTRATABLEMODEL_H 2 #define SPECTRATABLEMODEL_H 4 #include <QAbstractTableModel> 15 int rowCount(
const QModelIndex &parent)
const;
16 int columnCount(
const QModelIndex &parent)
const;
17 QVariant data(
const QModelIndex &index,
int role)
const;
18 void ShedRow(
int row);
19 QVariant headerData(
int section, Qt::Orientation orientation,
int role)
const;
26 QSharedPointer<VespucciDataset> dataset_;
29 #endif // SPECTRATABLEMODEL_H
The VespucciDataset class This is the main class for dealing with hyperspectral data. This handles the import and export of spectra, and the creation of maps. Images are handled by the MapData class. This class is intended to be allocated on the heap inside of a smart pointer, there is no copy constructor.