mirror of
https://github.com/Steffo99/unimore-hpc-assignments.git
synced 2024-11-23 08:34:23 +00:00
9 lines
150 B
C
9 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
|