14 lines
199 B
C
14 lines
199 B
C
|
|
|
||
|
|
#ifndef PEAK_CENTERING_H
|
||
|
|
#define PEAK_CENTERING_H
|
||
|
|
|
||
|
|
#include "algoGlobals.h"
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
void peakCentering(
|
||
|
|
std::vector<RgnPix> &InRgnPnt,
|
||
|
|
std::vector<RgnPix> &OutCenteringPnt
|
||
|
|
);
|
||
|
|
|
||
|
|
#endif
|