Skip to content

Commit

Permalink
Merge pull request #89 from wwd7086/patch-1
Browse files Browse the repository at this point in the history
Change process method inside TesseractEngine
  • Loading branch information
charlesw committed May 8, 2014
2 parents 8313405 + 9b8a136 commit 417c54d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tesseract/TesseractEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public Page Process(Pix image, PageSegMode? pageSegMode = null)
/// <returns>A result iterator</returns>
public Page Process(Pix image, Rect region, PageSegMode? pageSegMode = null)
{
return Process(image, null, new Rect(0, 0, image.Width, image.Height), pageSegMode);
return Process(image, null, region, pageSegMode);
}


Expand Down

0 comments on commit 417c54d

Please sign in to comment.