11 lines
499 B
C++
11 lines
499 B
C++
#ifndef SEGIMG_H
|
|
#define SEGIMG_H
|
|
#include <Matrix.h>
|
|
namespace Recon
|
|
{
|
|
Aurora::Matrix SegImgMain(const Aurora::Matrix& aMatrix, float aImageResolution, const Aurora::Matrix& aImageStartPoint, const Aurora::Matrix& aImageEndPoint);
|
|
Aurora::Matrix SegImg(const Aurora::Matrix& aSegRes, const Aurora::Matrix& aImg, int aEndZ, float aThre3D,
|
|
float aImageResolution, const Aurora::Matrix& aImageStartPoint, const Aurora::Matrix& aImageEndPoint);
|
|
}
|
|
#endif //SEGIMG_H
|