コード例 #1
0
ファイル: TessBaseAPI.java プロジェクト: WYJ0663/AndroidTest
  /**
   * Set the name of the bonus output files. Needed only for debugging.
   *
   * @param name output file name
   */
  public void setOutputName(String name) {
    if (mRecycled) throw new IllegalStateException();

    nativeSetOutputName(name);
  }
コード例 #2
0
ファイル: TessBaseAPI.java プロジェクト: mehulsbhatt/mobapp
 /**
  * Set the name of the output files. Needed only for debugging.
  *
  * @param name output file name
  */
 public void setOutputName(String name) {
   nativeSetOutputName(name);
 }