14 lines
191 B
C
14 lines
191 B
C
|
|
|
||
|
|
#ifndef SUBPIX_H
|
||
|
|
#define SUBPIX_H
|
||
|
|
|
||
|
|
#include "algoGlobals.h"
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
void subpix(
|
||
|
|
std::vector<RgnPixConvolve> &InConvolvePnt,
|
||
|
|
std::vector<RgnSubPix> &OutSubpixPnt
|
||
|
|
);
|
||
|
|
|
||
|
|
#endif
|