mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 11:09:06 +08:00
2972cc426b
+ Changed Project preprocessor definition of WINDLLNAME, because stringizing operator doesn't seem to work when initializing tessedit_module_name in ccutil/ccutil.cpp (which was omitted in previous fixes). + Update vs2008/tesshelper.py for new public header files. patch from Tom Powers (https://groups.google.com/group/tesseract-dev/msg/6da2799cd2cb9844) git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@702 d0cd1f9f-072b-0410-8dd7-cf729c803f20
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
// Copyright 2008 Google Inc. All Rights Reserved.
|
|
// Author: scharron@google.com (Samuel Charron)
|
|
|
|
#include "ccutil.h"
|
|
|
|
namespace tesseract {
|
|
CCUtil::CCUtil() :
|
|
params_(),
|
|
STRING_INIT_MEMBER(m_data_sub_dir,
|
|
"tessdata/", "Directory for data files", ¶ms_),
|
|
#ifdef _WIN32
|
|
STRING_INIT_MEMBER(tessedit_module_name, WINDLLNAME,
|
|
"Module colocated with tessdata dir", ¶ms_),
|
|
#endif
|
|
INT_INIT_MEMBER(ambigs_debug_level, 0, "Debug level for unichar ambiguities",
|
|
¶ms_),
|
|
BOOL_MEMBER(use_definite_ambigs_for_classifier, 0, "Use definite"
|
|
" ambiguities when running character classifier", ¶ms_),
|
|
BOOL_MEMBER(use_ambigs_for_adaption, 0, "Use ambigs for deciding"
|
|
" whether to adapt to a character", ¶ms_) {
|
|
}
|
|
|
|
CCUtil::~CCUtil() {
|
|
}
|
|
|
|
|
|
CCUtilMutex::CCUtilMutex() {
|
|
#ifdef _WIN32
|
|
mutex_ = CreateMutex(0, FALSE, 0);
|
|
#else
|
|
pthread_mutex_init(&mutex_, NULL);
|
|
#endif
|
|
}
|
|
|
|
void CCUtilMutex::Lock() {
|
|
#ifdef _WIN32
|
|
WaitForSingleObject(mutex_, INFINITE);
|
|
#else
|
|
pthread_mutex_lock(&mutex_);
|
|
#endif
|
|
}
|
|
|
|
void CCUtilMutex::Unlock() {
|
|
#ifdef _WIN32
|
|
ReleaseMutex(mutex_);
|
|
#else
|
|
pthread_mutex_unlock(&mutex_);
|
|
#endif
|
|
}
|
|
|
|
CCUtilMutex tprintfMutex; // should remain global
|
|
} // namespace tesseract
|