1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-23 00:24:23 +00:00
hpc-2022-g3/hls/assignment/sobel/sobel.h

9 lines
150 B
C
Raw Normal View History

2022-12-18 23:00:31 +00:00
#ifndef SOBEL_H
#define SOBEL_H
#include <stdint.h>
void sobel(uint8_t *__restrict__ out, uint8_t *__restrict__ in, int width, int height);
#endif