#include "picofeat.h"
#include "classify.h"
#include "efio.h"
#include "featdefs.h"
#include "fpoint.h"
#include "mfoutline.h"
#include "ocrfeatures.h"
#include "params.h"
#include "trainingsample.h"
#include <math.h>
#include <stdio.h>
Go to the source code of this file.
Function Documentation
Private Code —————————————————————————-
Definition at line 95 of file picofeat.cpp.
{
int NumFeatures;
int i;
if (NumFeatures < 1)
NumFeatures = 1;
Delta.
x =
XDelta (*Start, *End) / NumFeatures;
Delta.
y =
YDelta (*Start, *End) / NumFeatures;
Center.
x = Start->
x + Delta.
x / 2.0;
Center.
y = Start->
y + Delta.
y / 2.0;
for (i = 0; i < NumFeatures; i++) {
}
}
Definition at line 151 of file picofeat.cpp.
{
return;
First = Outline;
Current = First;
do {
&(
PointAt(Next)->Point), FeatureSet);
Current = Next;
}
while (Current != First);
}
Definition at line 227 of file picofeat.cpp.
{
for (
int f = 0;
f < num_features; ++
f) {
}
delete sample;
return feature_set;
}
Definition at line 257 of file picofeat.cpp.
{
delete sample;
return feature_set;
}
Variable Documentation
double classify_pico_feature_length = 0.05 |
Include Files and Type Defines —————————————————————————- "Pico Feature Length"
Definition at line 39 of file picofeat.cpp.