mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 02:59:07 +08:00
5bc5e2a0b4
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@650 d0cd1f9f-072b-0410-8dd7-cf729c803f20
144 lines
5.3 KiB
C++
144 lines
5.3 KiB
C++
// Copyright 2010 Google Inc. All Rights Reserved.
|
|
// Author: rays@google.com (Ray Smith)
|
|
///////////////////////////////////////////////////////////////////////
|
|
// File: intfeaturespace.cpp
|
|
// Description: Indexed feature space based on INT_FEATURE_STRUCT.
|
|
// Created: Wed Mar 24 11:21:27 PDT 2010
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
#include "intfeaturespace.h"
|
|
#include "intfx.h"
|
|
|
|
namespace tesseract {
|
|
|
|
IntFeatureSpace::IntFeatureSpace()
|
|
: x_buckets_(0), y_buckets_(0), theta_buckets_(0) {
|
|
}
|
|
|
|
void IntFeatureSpace::Init(uinT8 xbuckets, uinT8 ybuckets, uinT8 thetabuckets) {
|
|
x_buckets_ = xbuckets;
|
|
y_buckets_ = ybuckets;
|
|
theta_buckets_ = thetabuckets;
|
|
}
|
|
|
|
// Serializes the feature space definition to the given file.
|
|
// Returns false on error.
|
|
bool IntFeatureSpace::Serialize(FILE* fp) const {
|
|
if (fwrite(&x_buckets_, sizeof(x_buckets_), 1, fp) != 1)
|
|
return false;
|
|
if (fwrite(&y_buckets_, sizeof(y_buckets_), 1, fp) != 1)
|
|
return false;
|
|
if (fwrite(&theta_buckets_, sizeof(theta_buckets_), 1, fp) != 1)
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
// DeSerializes the feature space definition from the given file.
|
|
// If swap is true, the data is big/little-endian swapped.
|
|
// Returns false on error.
|
|
bool IntFeatureSpace::DeSerialize(bool swap, FILE* fp) {
|
|
if (fread(&x_buckets_, sizeof(x_buckets_), 1, fp) != 1)
|
|
return false;
|
|
if (fread(&y_buckets_, sizeof(y_buckets_), 1, fp) != 1)
|
|
return false;
|
|
if (fread(&theta_buckets_, sizeof(theta_buckets_), 1, fp) != 1)
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
// Returns an INT_FEATURE_STRUCT corresponding to the given index.
|
|
// This is the inverse of the Index member.
|
|
INT_FEATURE_STRUCT IntFeatureSpace::PositionFromIndex(int index) const {
|
|
return PositionFromBuckets(index / (y_buckets_ * theta_buckets_),
|
|
index / theta_buckets_ % y_buckets_,
|
|
index % theta_buckets_);
|
|
}
|
|
|
|
// Bulk calls to Index. Maps the given array of features to a vector of
|
|
// inT32 indices in the same order as the input.
|
|
void IntFeatureSpace::IndexFeatures(const INT_FEATURE_STRUCT* features,
|
|
int num_features,
|
|
GenericVector<int>* mapped_features) const {
|
|
mapped_features->truncate(0);
|
|
for (int f = 0; f < num_features; ++f)
|
|
mapped_features->push_back(Index(features[f]));
|
|
}
|
|
|
|
// Bulk calls to Index. Maps the given array of features to a vector of
|
|
// sorted inT32 indices.
|
|
void IntFeatureSpace::IndexAndSortFeatures(
|
|
const INT_FEATURE_STRUCT* features, int num_features,
|
|
GenericVector<int>* sorted_features) const {
|
|
sorted_features->truncate(0);
|
|
for (int f = 0; f < num_features; ++f)
|
|
sorted_features->push_back(Index(features[f]));
|
|
sorted_features->sort();
|
|
}
|
|
|
|
// Returns a feature space index for the given x,y position in a display
|
|
// window, or -1 if the feature is a miss.
|
|
int IntFeatureSpace::XYToFeatureIndex(int x, int y) const {
|
|
// Round the x,y position to a feature. Search for a valid theta.
|
|
INT_FEATURE_STRUCT feature = {static_cast<uinT8>(x), static_cast<uinT8>(y),
|
|
0, 0};
|
|
int index = -1;
|
|
for (int theta = 0; theta <= MAX_UINT8 && index < 0; ++theta) {
|
|
feature.Theta = theta;
|
|
index = Index(feature);
|
|
}
|
|
if (index < 0) {
|
|
tprintf("(%d,%d) does not exist in feature space!\n", x, y);
|
|
return -1;
|
|
}
|
|
feature = PositionFromIndex(index);
|
|
tprintf("Click at (%d, %d) ->(%d, %d), ->(%d, %d)\n",
|
|
x, y, feature.X, feature.Y, x - feature.X, y - feature.Y);
|
|
// Get the relative position of x,y from the rounded feature.
|
|
x -= feature.X;
|
|
y -= feature.Y;
|
|
if (x != 0 || y != 0) {
|
|
double angle = atan2(static_cast<double>(y), static_cast<double>(x)) + PI;
|
|
angle *= kIntFeatureExtent / (2.0 * PI);
|
|
feature.Theta = static_cast<uinT8>(angle + 0.5);
|
|
index = Index(feature);
|
|
if (index < 0) {
|
|
tprintf("Feature failed to map to a valid index:");
|
|
feature.print();
|
|
return -1;
|
|
}
|
|
feature = PositionFromIndex(index);
|
|
}
|
|
feature.print();
|
|
return index;
|
|
}
|
|
|
|
// Returns an INT_FEATURE_STRUCT corresponding to the given bucket coords.
|
|
INT_FEATURE_STRUCT IntFeatureSpace::PositionFromBuckets(int x,
|
|
int y,
|
|
int theta) const {
|
|
INT_FEATURE_STRUCT pos = {
|
|
static_cast<uinT8>(ClipToRange(
|
|
(x * kIntFeatureExtent + kIntFeatureExtent / 2) / x_buckets_,
|
|
0, MAX_UINT8)),
|
|
static_cast<uinT8>(ClipToRange(
|
|
(y * kIntFeatureExtent + kIntFeatureExtent / 2) / y_buckets_,
|
|
0, MAX_UINT8)),
|
|
static_cast<uinT8>(ClipToRange(
|
|
DivRounded(theta * kIntFeatureExtent, theta_buckets_),
|
|
0, MAX_UINT8))};
|
|
return pos;
|
|
}
|
|
|
|
} // namespace tesseract.
|