bla
This commit is contained in:
parent
603194451a
commit
6e9aa75694
@ -82,7 +82,7 @@ FloatImg img;
|
|||||||
int foo, retval;
|
int foo, retval;
|
||||||
FimgFilter3x3 *pfiltre;
|
FimgFilter3x3 *pfiltre;
|
||||||
|
|
||||||
FimgFilter3x3 lowpass = {
|
static FimgFilter3x3 lowpass = {
|
||||||
{
|
{
|
||||||
1.0, 2.0, 1.0,
|
1.0, 2.0, 1.0,
|
||||||
2.0, 4.0, 2.0,
|
2.0, 4.0, 2.0,
|
||||||
@ -91,7 +91,7 @@ FimgFilter3x3 lowpass = {
|
|||||||
16.0, 0.0
|
16.0, 0.0
|
||||||
};
|
};
|
||||||
|
|
||||||
FimgFilter3x3 hipass = {
|
static FimgFilter3x3 hipass = {
|
||||||
/* there was a bug with this filter */
|
/* there was a bug with this filter */
|
||||||
{
|
{
|
||||||
-1.0, -1.0, -1.0,
|
-1.0, -1.0, -1.0,
|
||||||
@ -101,7 +101,7 @@ FimgFilter3x3 hipass = {
|
|||||||
1.0, 0.0
|
1.0, 0.0
|
||||||
};
|
};
|
||||||
|
|
||||||
FimgFilter3x3 diagonal = {
|
static FimgFilter3x3 diagonal = {
|
||||||
/* there was a bug with this filter */
|
/* there was a bug with this filter */
|
||||||
{
|
{
|
||||||
4.0, 1.0, 0.0,
|
4.0, 1.0, 0.0,
|
||||||
|
Loading…
Reference in New Issue
Block a user