1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-26 18:14:23 +00:00
hpc-2022-g3/hls/assignment/sobel/sobel.cpp
Gattopandacorno b2d8739505 Remove bundle param from INTERFACE axis
Co-authored-by: Fabio Zanichelli <274956@studenti.unimore.it>
Co-authored-by: Stefano Pigozzi <256895@studenti.unimore.it>
2022-12-19 09:57:55 +01:00

36 lines
986 B
C++

#include <math.h>
#include "sobel.h"
void sobel(uint8_t *__restrict__ out, uint8_t *__restrict__ in, const int width, const int height)
{
#pragma HLS INTERFACE axis port=out
#pragma HLS INTERFACE axis port=in
#pragma HLS INTERFACE s_axilite port=width bundle=bwidth
#pragma HLS INTERFACE s_axilite port=height bundle=bheight
const int sobelFilter[3][3] = {
{-1, 0, 1},
{-2, 0, 2},
{-1, 0, 1}
};
for (int y = 1; y < height - 1; y++)
{
for (int x = 1; x < width - 1; x++)
{
int dx = 0;
int dy = 0;
for (int k = 0; k < 3; k++)
{
for (int z = 0; z < 3; z++)
{
dx += sobelFilter[k][z] * in[(y + k - 1) * width + x + z - 1];
dy += sobelFilter[z][k] * in[(y + k - 1) * width + x + z - 1];
}
}
out[y * width + x] = sqrt((float)((dx * dx) + (dy * dy)));
}
}
}