Métodos de mapeo para adaptación de imagen. Más...
Métodos públicos estáticos | |
static Pix | backgroundNormMorph (Pix pixs) |
Normalizes an image's background using default parameters. | |
static Pix | backgroundNormMorph (Pix pixs, int normReduction, int normSize, int normBgValue) |
Normalizes an image's background to a specified value. | |
Funciones estáticas del 'package' | |
[static initializer] | |
Métodos privados estáticos | |
static native int | nativeBackgroundNormMorph (int nativePix, int reduction, int size, int bgval) |
Atributos privados estáticos | |
static final int | NORM_BG_VALUE = 200 |
Background brightness value; values over 200 may result in clipping. | |
static final int | NORM_REDUCTION = 16 |
Image reduction value; possible values are 1, 2, 4, 8. | |
static final int | NORM_SIZE = 3 |
Desired tile size; actual size may vary. |
Métodos de mapeo para adaptación de imagen.
Definición en la línea 31 del archivo AdaptiveMap.java.
com.googlecode.leptonica.android.AdaptiveMap.[static initializer] | ( | ) | [static, package] |
static Pix com.googlecode.leptonica.android.AdaptiveMap.backgroundNormMorph | ( | Pix | pixs | ) | [static] |
Normalizes an image's background using default parameters.
pixs | A source pix image. |
Definición en la línea 56 del archivo AdaptiveMap.java.
static Pix com.googlecode.leptonica.android.AdaptiveMap.backgroundNormMorph | ( | Pix | pixs, |
int | normReduction, | ||
int | normSize, | ||
int | normBgValue | ||
) | [static] |
Normalizes an image's background to a specified value.
Notes:
pixs | A source pix image. |
normReduction | Reduction at which morphological closings are done. |
normSize | Size of square Sel for the closing. |
normBgValue | Target background value. |
Definición en la línea 102 del archivo AdaptiveMap.java.
static native int com.googlecode.leptonica.android.AdaptiveMap.nativeBackgroundNormMorph | ( | int | nativePix, |
int | reduction, | ||
int | size, | ||
int | bgval | ||
) | [static, private] |
final int com.googlecode.leptonica.android.AdaptiveMap.NORM_BG_VALUE = 200 [static, private] |
Background brightness value; values over 200 may result in clipping.
Definición en la línea 47 del archivo AdaptiveMap.java.
final int com.googlecode.leptonica.android.AdaptiveMap.NORM_REDUCTION = 16 [static, private] |
Image reduction value; possible values are 1, 2, 4, 8.
Definición en la línea 39 del archivo AdaptiveMap.java.
final int com.googlecode.leptonica.android.AdaptiveMap.NORM_SIZE = 3 [static, private] |
Desired tile size; actual size may vary.
Definición en la línea 42 del archivo AdaptiveMap.java.