mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-03-18 20:47:46 +01:00
12 lines
142 B
C
12 lines
142 B
C
|
#ifndef FILTER_H
|
||
|
#define FILTER_H
|
||
|
|
||
|
#include "matrix.h"
|
||
|
|
||
|
namespace Filter
|
||
|
{
|
||
|
MatrixD blur(const MatrixD &m, int radius);
|
||
|
}
|
||
|
|
||
|
#endif // FILTER_H
|