Impact Acquire SDK Java
|
Defines the Bayer conversion algorithm to use. More...
Static Public Attributes | |
static final int | bcmAdaptiveEdgeSensing = acquireJNI.bcmAdaptiveEdgeSensing_get() |
Adaptive edge sensing. | |
static final int | bcmAdaptiveEdgeSensingPlus = acquireJNI.bcmAdaptiveEdgeSensingPlus_get() |
Adaptive edge sensing plus. | |
static final int | bcmAdaptiveHomogeneityDirected = acquireJNI.bcmAdaptiveHomogeneityDirected_get() |
Adaptive edge sensing plus. | |
static final int | bcmAuto = acquireJNI.bcmAuto_get() |
Auto. | |
static final int | bcmLinearInterpolation = acquireJNI.bcmLinearInterpolation_get() |
Linear interpolation. | |
static final int | bcmLinearPacked = acquireJNI.bcmLinearPacked_get() |
Linear Packed. | |
static final int | bcmPacked = acquireJNI.bcmPacked_get() |
Packed. | |
Defines the Bayer conversion algorithm to use.
|
static |
Adaptive edge sensing.
This mode requires more CPU time than linear interpolation, but the resulting image more closely matches the original scene. Edges will be reconstructed with higher accuracy except for noisy images. For better results in noisy images mvIMPACT.acquire.TBayerConversionMode.bcmLinearInterpolation is the recommended mode.
|
static |
Adaptive edge sensing plus.
This mode is even more demanding CPU-wise than adaptive edge sensing, but the resulting image is sharper and has fewer artifacts. The parameters of the sharpening filter can be set by the user, to fit specific needs.
|
static |
Adaptive edge sensing plus.
This mode is most demanding CPU-wise, but the resulting image will have the best possible quality. It is based on the following algorithm: K. Hirakawa, T.W. Parks, Adaptive Homogeneity-Directed Demosaicing Algorithm, IEEE Trans. Image Processing, March, 2005.
|
static |
Auto.
This mode automatically sets the Bayer conversion algorithm according to the format property of the camera description.
|
static |
Linear interpolation.
This mode is fast but especially sharp edges will appear slightly blurred in the resulting image.
|
static |
Linear Packed.
In this mode the resulting image will have half the height of the source image. The following algorithm will be used for generating the resulting image:
This mode is mainly useful for line scan cameras as for area cameras this would modify the aspect ratio.
|
static |
Packed.
In this mode the resulting image will have half the height of the source image. The following algorithm will be used for generating the resulting image:
This mode is mainly useful for line scan cameras as for area cameras this would modify the aspect ratio.