Triggering the internal Non-Uniformity Correction (NUC) shutter mechanism.
Pass the User ID handle to configuration functions to request a specific stream channel (e.g., thermal main stream, optical sub-stream). Register callback functions to receive asynchronous video frames or raw temperature buffers.
To accommodate diverse development environments, HIKMICRO provides cross-platform support. Depending on the specific camera model and SDK version, development tools are typically available for: hikmicro sdk
The (Software Development Kit) is a collection of tools and libraries provided by HIKMICRO (and often integrated within the broader Hikvision Device Network SDK ) to allow developers to build custom software for thermal and radiometric imaging devices. Core Capabilities
The primary source for the latest HIKMICRO SDK is the official . Specifically, you should navigate to the Tools section on their website. There, you will find: Specifically, you should navigate to the Tools section
The HIKMICRO SDK is essentially a set of software tools, libraries, documentation, and code samples that allow third-party developers to create applications that interact directly with HIKMICRO thermal cameras and sensors. For a product manufacturer or system integrator, the SDK bridges the gap between the raw power of the camera's hardware and their own specialized application.
Android (Java/Kotlin) and iOS (Objective-C/Swift) for handheld thermal imagers and smartphone attachments. For enterprise deployments
float RawToTemperature(uint16_t rawValue, float tempRangeMin, float tempRangeMax) // Linear mapping based on device calibration (values vary by model) // -20°C to 550°C typical for industrial cores return (float)rawValue / 65535.0 * (tempRangeMax - tempRangeMin) + tempRangeMin;
For enterprise deployments, security is paramount. The SDK supports: