camAlgo/camAlgoSW/sourceCode/peakCentering.h

14 lines
199 B
C
Raw Permalink Normal View History

2025-08-16 15:25:29 +08:00
#ifndef PEAK_CENTERING_H
#define PEAK_CENTERING_H
#include "algoGlobals.h"
#include <vector>
void peakCentering(
std::vector<RgnPix> &InRgnPnt,
std::vector<RgnPix> &OutCenteringPnt
);
#endif