Impact Acquire SDK Java
TImageProcessingResult Class Reference

Defines valid values for the result of a certain image processing algorithm applied to a request. More...

Static Public Attributes

static final int iprApplied = acquireJNI.iprApplied_get()
 This algorithm has been applied to this request object.
 
static final int iprFailure = acquireJNI.iprFailure_get()
 A problem was encountered when this algorithm has been applied to this request object.
 
static final int iprNotActive = acquireJNI.iprNotActive_get()
 This algorithm was either switched off or not needed when applied to this request object.
 
static final int iprNotApplicable = acquireJNI.iprNotApplicable_get()
 This algorithm has NOT been applied because it was not applicable.
 
static final int iprSkipped = acquireJNI.iprSkipped_get()
 This algorithm has NOT been applied because of a lack of processing time.
 

Detailed Description

Defines valid values for the result of a certain image processing algorithm applied to a request.

Since
2.14.0

Member Data Documentation

◆ iprApplied

final int iprApplied = acquireJNI.iprApplied_get()
static

This algorithm has been applied to this request object.

◆ iprFailure

final int iprFailure = acquireJNI.iprFailure_get()
static

A problem was encountered when this algorithm has been applied to this request object.

One reason for this result might be that an unsupported pixel format was fed into this algorithm. The log-file will provide additional information then.

◆ iprNotActive

final int iprNotActive = acquireJNI.iprNotActive_get()
static

This algorithm was either switched off or not needed when applied to this request object.

When an algorithm is switched on and this result is returned this can indicate e.g. that for a format conversion the input and output format where identical.

◆ iprNotApplicable

final int iprNotApplicable = acquireJNI.iprNotApplicable_get()
static

This algorithm has NOT been applied because it was not applicable.

This result will be reported whenever a buffer was fed into a filter that was not applicable. An example for such a situation would be a JPEG image that has been fed into a de-Bayer algorithm.

Since
2.22.1

◆ iprSkipped

final int iprSkipped = acquireJNI.iprSkipped_get()
static

This algorithm has NOT been applied because of a lack of processing time.

In most cases the acquisition frame rate(thus the frame rate generated on the device) was higher than the processing frame rate the host can handle and the user has explicitly configured the image processing mode to skip images then.