13 lines
387 B
C
13 lines
387 B
C
|
|
#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__
|