Package com.flir.thermalsdk


package com.flir.thermalsdk
The main 'FLIR Atlas Android SDK' package.

Before FLIR Atlas Android SDK is used, remember to call proper initializer basing on the platform:

ANDROID:
  public void mySdkInit(Context context) {
      ThermalSdkAndroid.init(context); // init with an Android Context instance (i.e. Activity)
      // from here it is safe to call any other SDK APIs
  }
 
JAVA DESKTOP:
  public void mySdkInit() {
      ThermalSdkJava.init();
      // from here it is safe to call any other SDK APIs
  }