#include <cmath>#include "PredefinedKernel.hpp"Aller au code source de ce fichier.
Variables | |
| static const float | floatSobelVerticalKernel [] |
| static const float | floatSobelHorizontalKernel [] |
| static const float | floatPrewittVerticalKernel [] |
| static const float | floatPrewittHorizontalKernel [] |
| static const float | floatLaplaceKernel [] |
| static const float | floatMDIFKernel [] |
| static const float | floatMediumSmoothKernel [] |
const float floatLaplaceKernel[] [static] |
Valeur initiale :
{
0, 1, 0,
1, -4, 1,
0, 1, 0
}
Définition à la ligne 67 du fichier PredefinedKernel.cpp.
const float floatMDIFKernel[] [static] |
Valeur initiale :
{
0, 1, 0, -1, 0,
1, 2, 0, -2, -1,
1, 3, 0, -3, -1,
1, 2, 0, -2, -1,
0, 1, 0, -1, 0
}
Définition à la ligne 74 du fichier PredefinedKernel.cpp.
const float floatMediumSmoothKernel[] [static] |
Valeur initiale :
{
1.0f / 9.0f, 1.0f / 9.0f, 1.0f / 9.0f,
1.0f / 9.0f,1.0f / 9.0f,1.0f / 9.0f,
1.0f / 9.0f,1.0f / 9.0f,1.0f / 9.0f
}
Définition à la ligne 83 du fichier PredefinedKernel.cpp.
const float floatPrewittHorizontalKernel[] [static] |
Valeur initiale :
{
-1, 0, 1,
-1, 0, 1,
-1, 0, 1
}
Définition à la ligne 59 du fichier PredefinedKernel.cpp.
const float floatPrewittVerticalKernel[] [static] |
Valeur initiale :
{
-1, -1 , -1,
0, 0, 0,
1, 1, 1
}
Définition à la ligne 52 du fichier PredefinedKernel.cpp.
const float floatSobelHorizontalKernel[] [static] |
Valeur initiale :
{
-1, 0, 1,
-2, 0, 2,
-1, 0, 1
}
Définition à la ligne 45 du fichier PredefinedKernel.cpp.
const float floatSobelVerticalKernel[] [static] |
Valeur initiale :
{
-1, -2 , -1,
0, 0, 0,
1, 2, 1
}
Définition à la ligne 38 du fichier PredefinedKernel.cpp.
1.5.1