Go to the source code of this file.
|
namespace | app |
| Namespace obsahující veškeré vlastní třídy knihovny pro zpracování obrazu.
|
|
|
#define | INTERPOLATE_BILINEAR(P11, P12, P21, P22, X, Y, RES) RES = ((-P12 + P11 - P21 + P22) * Y - P11 + P21) * X + (-P11 + P12) * Y + P11; |
| Provede bilineární interpolaci mezi pody Pi, výsledek uloží do RES.
|
|
#define | INTERPOLATE_LINEAR(P1, P2, X, RES) RES = P1 + (P2 - P1) * X; |
|
#define INTERPOLATE_BILINEAR |
( |
|
P11, |
|
|
|
P12, |
|
|
|
P21, |
|
|
|
P22, |
|
|
|
X, |
|
|
|
Y, |
|
|
|
RES |
|
) |
| RES = ((-P12 + P11 - P21 + P22) * Y - P11 + P21) * X + (-P11 + P12) * Y + P11; |
Provede bilineární interpolaci mezi pody Pi, výsledek uloží do RES.
Definition at line 20 of file TLinearFInt.hpp.
#define INTERPOLATE_LINEAR |
( |
|
P1, |
|
|
|
P2, |
|
|
|
X, |
|
|
|
RES |
|
) |
| RES = P1 + (P2 - P1) * X; |