Ejemplo n.º 1
0
  /**
   * Frees up recognition results and any stored image data, without actually freeing any
   * recognition data that would be time-consuming to reload. Afterwards, you must call SetImage or
   * SetRectangle before doing any Recognize or Get* operation.
   */
  public void clear() {
    if (mRecycled) throw new IllegalStateException();

    nativeClear();
  }
Ejemplo n.º 2
0
 /**
  * Frees up recognition results and any stored image data, without actually freeing any
  * recognition data that would be time-consuming to reload. Afterwards, you must call SetImage or
  * SetRectangle before doing any Recognize or Get* operation.
  */
 public void clear() {
   nativeClear();
 }