jerryzeng dec5589bdb version 1.6
-compatible to VITIS_HLS
-compatible to ubuntu24.04
-change test data directory
2025-11-22 22:45:19 +08:00

25 lines
505 B
C

#ifndef CONVOLVE_H
#define CONVOLVE_H
#include "../../globals/algoGlobals.h"
const int mask_1st[16] =
{
0, 40296, 85253, 152591, 228164, 278336, 262648, 161763,
0, -161763, -262648, -278336, -228164, -152591, -85253, -40296
};
const int mask_2nd[16] =
{
0, 33453, 56890, 75525, 69805, 23272, -58318, -139282,
-173404, -139282, -58318, 23272, 69805, 75525, 56890, 33453
};
void convolve(
hls::stream<RgnPix> &InRgnPnt,
hls::stream<RgnPixConvolve> &OutConvolvePnt
);
#endif