Tesseract tessdata folder might now also work for Linux (hardcoded to /usr/share/tesseract-ocr/tessdata)

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@396 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2011-04-13 05:13:23 +00:00
parent e20656f117
commit 257fe139cf

View File

@ -34,6 +34,17 @@ namespace Nikse.SubtitleEdit.Logic
} }
} }
public static string TesseractDataFolder
{
get
{
if (Utilities.IsRunningOnLinux())
return "/usr/share/tesseract-ocr/tessdata";
else
return TesseractFolder + "tessdata";
}
}
public static string TesseractFolder public static string TesseractFolder
{ {
get get