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