Files
UR/src/reflectionReconstruction/preprocessData/resampleTransmissionVolume.h

21 lines
556 B
C
Raw Normal View History

#ifndef RESAMPLETRANSMISSIONVOLUME_H
#define RESAMPLETRANSMISSIONVOLUME_H
#include "Matrix.h"
2024-12-19 11:24:56 +08:00
#include "common/getGeometryInfo.h"
namespace Recon
{
struct TransmissionVolme
{
Aurora::Matrix transMap;
2023-10-09 09:29:21 +08:00
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