1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-22 16:14:24 +00:00
hpc-2022-g3/hls/assignment/sobel/sobel.h
Alessandro Capotondi 7cab92df26 Added HLS Assignments
2022-12-19 00:00:31 +01:00

8 lines
150 B
C

#ifndef SOBEL_H
#define SOBEL_H
#include <stdint.h>
void sobel(uint8_t *__restrict__ out, uint8_t *__restrict__ in, int width, int height);
#endif