Page 1 of 1
Add noise
Posted: Sun Aug 27, 2006 12:57 pm
by Marie K.
is it possible to use the
noise funktion like in Xnview...
Add uniform noise
Add gaussian noise
?
in the 'rezise' function
possible to use the
Lanczos parameter ?
or only 'bilinear'
Marie
Re: Add noise
Posted: Wed Aug 30, 2006 8:55 am
by xnview
Marie K. wrote:is it possible to use the
noise funktion like in Xnview...
Add uniform noise
Add gaussian noise
?
Currently these fonctions are not available, but if you want them, i can add them to gfle
in the 'rezise' function
possible to use the
Lanczos parameter ?
or only 'bilinear'
You have GFL_RESIZE_LANCZOS
Re: Add noise
Posted: Mon Sep 04, 2006 5:56 am
by Guest
xnview wrote:Marie K. wrote:is it possible to use the
noise funktion like in Xnview...
Add uniform noise
Add gaussian noise
?
Currently these fonctions are not available, but if you want them, i can add them to gfle
in the 'rezise' function
possible to use the
Lanczos parameter ?
or only 'bilinear'
You have GFL_RESIZE_LANCZOS
only declared in the bas - File !!
Public Const GFL_RESIZE_QUICK = 0
Public Const GFL_RESIZE_BILINEAR = 1
GFL_RESIZE_LANCZOS ?? Number ??
Re: Add noise
Posted: Mon Sep 04, 2006 7:22 am
by xnview
Anonymous wrote:
only declared in the bas - File !!
Public Const GFL_RESIZE_QUICK = 0
Public Const GFL_RESIZE_BILINEAR = 1
GFL_RESIZE_LANCZOS ?? Number ??
Code: Select all
#define GFL_RESIZE_QUICK 0
#define GFL_RESIZE_BILINEAR 1
#define GFL_RESIZE_HERMITE 2
#define GFL_RESIZE_GAUSSIAN 3
#define GFL_RESIZE_BELL 4
#define GFL_RESIZE_BSPLINE 5
#define GFL_RESIZE_MITSHELL 6
#define GFL_RESIZE_LANCZOS 7