13 lines
443 B
C++
13 lines
443 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);
|
|
}
|
|
|
|
|
|
#endif // __DATAFILTER_H__
|