/ocr/ocrservice/jni/hydrogen/src/validator.h
C++ Header | 37 lines | 14 code | 8 blank | 15 comment | 0 complexity | 1e8d2127b684f12b7e26b63033f1accb MD5 | raw file
1/* 2 * Copyright 2010, Google Inc. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17#ifndef HYDROGEN_VALIDATOR_H_ 18#define HYDROGEN_VALIDATOR_H_ 19 20#include "leptonica.h" 21#include "hydrogentextdetector.h" 22 23bool ValidatePairOld(BOX *b1, BOX *b2); 24 25bool ValidateSingleton(PIX *pix, BOX *box, PIX *pix8, l_float32 *pconf, 26 HydrogenTextDetector::TextDetectorParameters ¶ms); 27 28bool ValidatePair(BOX *b1, BOX *b2, l_float32 *pconf, 29 HydrogenTextDetector::TextDetectorParameters ¶ms); 30 31bool ValidateClusterPair(BOX *b1, BOX *b2, bool *too_far, l_float32 *pconf, 32 HydrogenTextDetector::TextDetectorParameters ¶ms); 33 34bool ValidateCluster(PIX *pix8, PIXA *pixa, BOX *box, l_float32 *pconf, 35 HydrogenTextDetector::TextDetectorParameters ¶ms); 36 37#endif /* HYDROGEN_VALIDATOR_H_ */