Interface ITrackingListener


public interface ITrackingListener
Created by murodjon on 2020/04/14
  • Method Summary

    Modifier and Type Method Description
    default void onClear()  
    default void onTracking​(int x, int y, int width, int height)
    This callback function is a return of object tracking
    default void onTracking​(int x, int y, int width, int height, int frameWidth, int frameHeight)
    This callback function is a return of object tracking
    default void onTracking​(Rect rect)  
  • Method Details

    • onTracking

      default 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

      default 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
    • onTracking

      default void onTracking​(Rect rect)
    • onClear

      default void onClear()