15 lines
565 B
C
15 lines
565 B
C
|
|
#ifndef __REF_DATAFILTER_H__
|
||
|
|
#define __REF_DATAFILTER_H__
|
||
|
|
|
||
|
|
#include "Matrix.h"
|
||
|
|
namespace Recon {
|
||
|
|
Aurora::Matrix filterReflectionData(const Aurora::Matrix &aVReceiverPositionBlock,
|
||
|
|
const Aurora::Matrix &aVSenderPositionBlock,
|
||
|
|
const Aurora::Matrix &aVSenderNormalBlock,
|
||
|
|
int aConstrictReflectionAngles,
|
||
|
|
double aAngleLowerLimit,
|
||
|
|
double aAngleUpperLimit);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
#endif // __DATAFILTER_H__
|