File: algebra.h

package info (click to toggle)
swappy 1.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,072 kB
  • sloc: ansic: 2,368; sh: 76; javascript: 8; xml: 7; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <glib.h>

struct gaussian_kernel {
  gdouble *kernel;
  gint size;
  gdouble sigma;
  gdouble sum;
};

struct gaussian_kernel *gaussian_kernel(gint width, gdouble sigma);
void gaussian_kernel_free(gpointer data);