mirror of
https://github.com/Steffo99/unimore-hpc-assignments.git
synced 2024-11-22 16:14:24 +00:00
8 lines
150 B
C
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
|