This commit is contained in:
tTh 2023-07-06 09:02:32 +02:00
parent 603194451a
commit 6e9aa75694
1 changed files with 3 additions and 3 deletions

View File

@ -82,7 +82,7 @@ FloatImg img;
int foo, retval;
FimgFilter3x3 *pfiltre;
FimgFilter3x3 lowpass = {
static FimgFilter3x3 lowpass = {
{
1.0, 2.0, 1.0,
2.0, 4.0, 2.0,
@ -91,7 +91,7 @@ FimgFilter3x3 lowpass = {
16.0, 0.0
};
FimgFilter3x3 hipass = {
static FimgFilter3x3 hipass = {
/* there was a bug with this filter */
{
-1.0, -1.0, -1.0,
@ -101,7 +101,7 @@ FimgFilter3x3 hipass = {
1.0, 0.0
};
FimgFilter3x3 diagonal = {
static FimgFilter3x3 diagonal = {
/* there was a bug with this filter */
{
4.0, 1.0, 0.0,