feat: Add resample transmission image and positioning image.

This commit is contained in:
sunwen
2025-06-27 15:59:25 +08:00
parent 049b7068d7
commit 0852e076b3
5 changed files with 120 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
#ifndef __CREATEPOSITIONINGIMAGE_H__
#define __CREATEPOSITIONINGIMAGE_H__
#include "Matrix.h"
namespace Recon
{
Aurora::Matrix createCoronalPlaneImage(const Aurora::Matrix& a3DImage);
Aurora::Matrix createSagittalPlaneImage(const Aurora::Matrix& a3DImage);
Aurora::Matrix createTransversePlaneImage(const Aurora::Matrix& a3DImage);
}
#endif // __CREATEPOSITIONINGIMAGE_H__