21 lines
556 B
C++
21 lines
556 B
C++
#ifndef RESAMPLETRANSMISSIONVOLUME_H
|
|
#define RESAMPLETRANSMISSIONVOLUME_H
|
|
|
|
#include "Matrix.h"
|
|
#include "common/getGeometryInfo.h"
|
|
|
|
namespace Recon
|
|
{
|
|
struct TransmissionVolme
|
|
{
|
|
Aurora::Matrix transMap;
|
|
float deltaTransMap;
|
|
Aurora::Matrix beginTransMap;
|
|
};
|
|
|
|
TransmissionVolme resampleTransmissionVolume(const Aurora::Matrix& aTransVol, const Aurora::Matrix& aMaxPos,
|
|
const Aurora::Matrix& aMinPos,const GeometryInfo& aGeom);
|
|
}
|
|
|
|
|
|
#endif // RESAMPLETRANSMISSIONVOLUME_H
|