Package 

Interface ITrackingListener

    • Method Summary

      Modifier and Type Method Description
      void onTracking(int x, int y, int width, int height) This callback function is a return of object tracking
      void onTracking(int x, int y, int width, int height, int frameWidth, int frameHeight) This callback function is a return of object tracking
      void onClear()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • onTracking

         void onTracking(int x, int y, int width, int height)

        This callback function is a return of object tracking

        Parameters:
        x - starting coordinate point of tracked result by x
        y - starting coordinate of tracked result by y
        width - width of tracked object
        height - height of tracked object
      • onTracking

         void onTracking(int x, int y, int width, int height, int frameWidth, int frameHeight)

        This callback function is a return of object tracking

        Parameters:
        x - starting coordinate point of tracked result by x
        y - starting coordinate of tracked result by y
        width - width of tracked object
        height - height of tracked object
        frameWidth - width of being processed frame
        frameHeight - height of being processed frame