OWLIFT C Library for Windows
1.9.3
|
Top Page |
OwStatus_t OwLib_GetActive | ( | OwDev | dev, |
BOOL * | activep | ||
) |
Test if the device is capturing.
dev | [in] The device handle. |
activep | [out] The pointer that receives whether or not the device is capturing. TRUE : The device is capturing, FALSE : otherwise. |
void* OwLib_GetCaptureFilter | ( | OwDev | dev | ) |
Gets the DirectShow capture filter related to the device handle.
dev | [in] The device handle. |
BOOL OwLib_GetCircumferenceCorrection | ( | OwDev | dev | ) |
Returns whether or not the temperature correction of circumferential direction is enabled. This function only works with OWLIFT Type-A.
dev | [in] The device handle. |
OwStatus_t OwLib_GetConfig | ( | OwDev | dev, |
UINT16 * | cfgp | ||
) |
Gets the device configuration.
dev | [in] The device handle. |
cfgp | [out] The pointer that receives the device configuration. The value is constructed with following flags.
|
BOOL OwLib_GetDisconnected | ( | OwDev | dev | ) |
Gets whether or not the device was disconnected. As a restriction, this function always returns FALSE if the device was gotten by OwLib_GetDeviceByCaptureFilter().
const char* OwLib_GetErrorMessage | ( | OwStatus_t | st | ) |
Gets the corresponding messsage to the error code.
st | [in] The library error code. |
OwFirmwareErrorCode_t OwLib_GetFirmwareError | ( | OwDev | dev | ) |
Gets the device error code occurred in the function that was called last.
dev | [in] The device handle. |
UINT16 OwLib_GetFirmwareVersion | ( | OwDev | dev | ) |
Gets the device firmware version number.
dev | [in] The device handle. |
UINT16 OwLib_GetFooterLines | ( | OwDev | dev | ) |
Returns the number of trailing lines after a thermography block in a frame data. This includes the number of lines of Telemetry Data.
dev | [in] The device handle. |
UINT16 OwLib_GetFrameHeight | ( | OwDev | dev | ) |
Returns the vertical resolution of the frame.
dev | [in] The device handle. |
int OwLib_GetFrameRateDenominator | ( | OwDev | dev | ) |
Returns the denominator of the frame rate.
dev | [in] The device handle. |
int OwLib_GetFrameRateNumerator | ( | OwDev | dev | ) |
Returns the numerator of the frame rate.
dev | [in] The device handle. |
UINT16 OwLib_GetFrameWidth | ( | OwDev | dev | ) |
Returns the horizontal resolution of the frame.
dev | [in] The device handle. |
OwHostErrorCode_t OwLib_GetHostError | ( | OwDev | dev | ) |
Gets the host error code occurred in the function that was called last.
dev | [in] The device handle. |
UINT32 OwLib_GetLibVersion | ( | void | ) |
Gets the library version number.
BOOL OwLib_GetNoiseFilter | ( | OwDev | dev | ) |
Returns whether or not the Noise Filter is enabled.
dev | [in] The device handle. |
UINT16 OwLib_GetNoiseFilterThreshold | ( | OwDev | dev | ) |
Gets the threshold of the Noise Filter.
dev | [in] The device handle. |
UINT16 OwLib_GetProductID | ( | OwDev | dev | ) |
Gets the Product ID (idProduct) as an USB device.
dev | [in] The device handle. |
UINT16 OwLib_GetReleaseNumber | ( | OwDev | dev | ) |
Gets the Release Number (bcdDevice) as an USB device.
dev | [in] The device handle. |
OwSensorErrorCode_t OwLib_GetSensorError | ( | OwDev | dev | ) |
Gets the sensor error code occurred in the function that was called last.
dev | [in] The device handle. |
void OwLib_GetSerialNumber | ( | OwDev | dev, |
UINT16 * | serialp | ||
) |
Gets the serial number of the sensor module.
dev | [in] The device handle. |
serialp | [out] The pointer that receives the serial number. The array size of serialp must be greater than or equal to OWLIB_SERIAL_NUMBER_SIZE. |
UINT64 OwLib_GetSerialNumberAsUINT64 | ( | OwDev | dev | ) |
Gets the serial number of the sensor module as UINT64 type.
dev | [in] The device handle. |
UINT16 OwLib_GetSupportedFWVersion | ( | void | ) |
Gets the minimum supported version number of the device firmware.
UINT16 OwLib_GetSupportedTelemetryDataRevision | ( | OwDev | dev | ) |
Returns a revision number of the telemetry data that the connected device has.
dev | [in] The device handle. |
UINT16 OwLib_GetTelemetryDataLines | ( | OwDev | dev | ) |
Returns the number of trailing lines which represent Telemetry Data after a thermography block in a frame data.
dev | [in] The device handle. |
BOOL OwLib_GetUndistortion | ( | OwDev | dev | ) |
Returns whether or not the Undistortion is enabled. The default value is FALSE for OWLIFT Type-A/B, is TRUE for OWLIFT Type-F.
dev | [in] The device handle. |
UINT16 OwLib_GetVendorID | ( | OwDev | dev | ) |
Gets the Vendor ID (idVendor) as an USB device.
dev | [in] The device handle. |
BOOL OwLib_IsRealDevice | ( | OwDev | dev | ) |
Returns whether or not the specified handle is related to a real device.
dev | [in] The device handle. |
void OwLib_SetCircumferenceCorrection | ( | OwDev | dev, |
BOOL | enabled | ||
) |
Enables or disables the temperature correction of circumferential direction. This function only works with OWLIFT Type-A.
dev | [in] The device handle. |
enabled | [in] TRUE : enabled, FALSE: disabled. |
OwStatus_t OwLib_SetConfig | ( | OwDev | dev, |
UINT16 | cfg | ||
) |
Sets the device configuration.
dev | [in] The device handle. |
cfg | [in] The device configuration value. See OwLib_GetCaptureFilter() about the value. |
void OwLib_SetNoiseFilter | ( | OwDev | dev, |
BOOL | enabled | ||
) |
Enables or disables the Noise Filter.
dev | [in] The device handle. |
enabled | [in] TRUE : enabled, FALSE: disabled. |
void OwLib_SetNoiseFilterThreshold | ( | OwDev | dev, |
UINT16 | threshold | ||
) |
Sets the threshold of the Noise Filter.
dev | [in] The device handle. |
threshold | [in] The value from OWDECODE_NOISE_FILTER_THRESHOLD_MIN to OWDECODE_NOISE_FILTER_THRESHOLD_MAX. OWDECODE_NOISE_FILTER_THRESHOLD_MIN is minimum correction strength. |
void OwLib_SetUndistortion | ( | OwDev | dev, |
BOOL | enabled | ||
) |
Enables or disables the Undistortion.
dev | [in] The device handle. |
enabled | [in] TRUE : enabled, FALSE: disabled. |
Copyright (C) 2016 Infinitegra, INC. All Rights Reserved. |
Generated by |