GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_edge_detection.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2/*
3 * Copyright (C) 2009-2013 Cyril Hrubis <metan@ucw.cz>
4 */
5
6#ifndef FILTERS_GP_EDGE_DETECTION_H
7#define FILTERS_GP_EDGE_DETECTION_H
8
9#include <filters/gp_filter.h>
10
11int gp_filter_edge_sobel(const gp_pixmap *src,
12 gp_pixmap **E, gp_pixmap **Phi,
13 gp_progress_cb *callback);
14
15int gp_filter_edge_prewitt(const gp_pixmap *src,
16 gp_pixmap **E, gp_pixmap **Phi,
17 gp_progress_cb *callback);
18
19
20#endif /* FILTERS_GP_EDGE_DETECTION_H */
Common filter includes.
A pixmap buffer.
Definition gp_pixmap.h:33
Progress callback.