fix ocr
parent
a1ee372710
commit
a010f26d67
162
api/ocr/cli.go
162
api/ocr/cli.go
|
@ -3,8 +3,11 @@ package ocr
|
||||||
import (
|
import (
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"go.digitalcircle.com.br/open/replaycli-go/api"
|
"go.digitalcircle.com.br/open/replaycli-go/api"
|
||||||
|
"log"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const ScreenShot = "ss"
|
||||||
|
|
||||||
type AltoString struct {
|
type AltoString struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
ID string `xml:"ID,attr"`
|
ID string `xml:"ID,attr"`
|
||||||
|
@ -14,7 +17,25 @@ type AltoString struct {
|
||||||
HEIGHT int `xml:"HEIGHT,attr"`
|
HEIGHT int `xml:"HEIGHT,attr"`
|
||||||
WC float64 `xml:"WC,attr"`
|
WC float64 `xml:"WC,attr"`
|
||||||
CONTENT string `xml:"CONTENT,attr"`
|
CONTENT string `xml:"CONTENT,attr"`
|
||||||
|
RHPOS int `xml:"RHPOS,attr"`
|
||||||
|
RVPOS int `xml:"RVPOS,attr"`
|
||||||
|
RWIDTH int `xml:"RWIDTH,attr"`
|
||||||
|
RHEIGHT int `xml:"RHEIGHT,attr"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (a *AltoString) AbsCoords(q *Opts) {
|
||||||
|
nx := int(float64(a.HPOS)/q.Proportion) + q.X
|
||||||
|
ny := int(float64(a.VPOS)/q.Proportion) + q.Y
|
||||||
|
nw := int(float64(a.WIDTH) / q.Proportion)
|
||||||
|
nh := int(float64(a.HEIGHT) / q.Proportion)
|
||||||
|
log.Printf("Mapping: x: %v=>%v; y:%v=>%v; w:%v=>%v; h:%v=>%v;(Prop: %v,qx: %v, qy: %v)", a.HPOS, nx, a.VPOS, ny, a.WIDTH, nw, a.HEIGHT, nh, q.Proportion, q.X, q.Y)
|
||||||
|
a.RHPOS = nx
|
||||||
|
a.RVPOS = ny
|
||||||
|
a.RWIDTH = nw
|
||||||
|
a.RHEIGHT = nh
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
type AltoSP struct {
|
type AltoSP struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
WIDTH int `xml:"WIDTH,attr"`
|
WIDTH int `xml:"WIDTH,attr"`
|
||||||
|
@ -22,48 +43,48 @@ type AltoSP struct {
|
||||||
HPOS int `xml:"HPOS,attr"`
|
HPOS int `xml:"HPOS,attr"`
|
||||||
}
|
}
|
||||||
type AltoTextLine struct {
|
type AltoTextLine struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
ID string `xml:"ID,attr"`
|
ID string `xml:"ID,attr"`
|
||||||
HPOS string `xml:"HPOS,attr"`
|
HPOS string `xml:"HPOS,attr"`
|
||||||
VPOS string `xml:"VPOS,attr"`
|
VPOS string `xml:"VPOS,attr"`
|
||||||
WIDTH string `xml:"WIDTH,attr"`
|
WIDTH string `xml:"WIDTH,attr"`
|
||||||
HEIGHT string `xml:"HEIGHT,attr"`
|
HEIGHT string `xml:"HEIGHT,attr"`
|
||||||
String []AltoString `xml:"String"`
|
String []*AltoString `xml:"String"`
|
||||||
SP []AltoSP `xml:"SP"`
|
SP []*AltoSP `xml:"SP"`
|
||||||
}
|
}
|
||||||
type AltoTextBlock struct {
|
type AltoTextBlock struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
ID string `xml:"ID,attr"`
|
ID string `xml:"ID,attr"`
|
||||||
HPOS int `xml:"HPOS,attr"`
|
HPOS int `xml:"HPOS,attr"`
|
||||||
VPOS int `xml:"VPOS,attr"`
|
VPOS int `xml:"VPOS,attr"`
|
||||||
WIDTH int `xml:"WIDTH,attr"`
|
WIDTH int `xml:"WIDTH,attr"`
|
||||||
HEIGHT int `xml:"HEIGHT,attr"`
|
HEIGHT int `xml:"HEIGHT,attr"`
|
||||||
TextLine []AltoTextLine `xml:"TextLine"`
|
TextLine []*AltoTextLine `xml:"TextLine"`
|
||||||
}
|
}
|
||||||
type AltoComposedBlock struct {
|
type AltoComposedBlock struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
ID string `xml:"ID,attr"`
|
ID string `xml:"ID,attr"`
|
||||||
HPOS int `xml:"HPOS,attr"`
|
HPOS int `xml:"HPOS,attr"`
|
||||||
VPOS int `xml:"VPOS,attr"`
|
VPOS int `xml:"VPOS,attr"`
|
||||||
WIDTH int `xml:"WIDTH,attr"`
|
WIDTH int `xml:"WIDTH,attr"`
|
||||||
HEIGHT int `xml:"HEIGHT,attr"`
|
HEIGHT int `xml:"HEIGHT,attr"`
|
||||||
TextBlock []AltoTextBlock `xml:"TextBlock"`
|
TextBlock []*AltoTextBlock `xml:"TextBlock"`
|
||||||
}
|
}
|
||||||
type AltoPrintSpace struct {
|
type AltoPrintSpace struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
HPOS int `xml:"HPOS,attr"`
|
HPOS int `xml:"HPOS,attr"`
|
||||||
VPOS int `xml:"VPOS,attr"`
|
VPOS int `xml:"VPOS,attr"`
|
||||||
WIDTH int `xml:"WIDTH,attr"`
|
WIDTH int `xml:"WIDTH,attr"`
|
||||||
HEIGHT int `xml:"HEIGHT,attr"`
|
HEIGHT int `xml:"HEIGHT,attr"`
|
||||||
ComposedBlock []AltoComposedBlock `xml:"ComposedBlock"`
|
ComposedBlock []*AltoComposedBlock `xml:"ComposedBlock"`
|
||||||
}
|
}
|
||||||
type AltoPage struct {
|
type AltoPage struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
WIDTH int `xml:"WIDTH,attr"`
|
WIDTH int `xml:"WIDTH,attr"`
|
||||||
HEIGHT int `xml:"HEIGHT,attr"`
|
HEIGHT int `xml:"HEIGHT,attr"`
|
||||||
PHYSICALIMGNR string `xml:"PHYSICAL_IMG_NR,attr"`
|
PHYSICALIMGNR string `xml:"PHYSICAL_IMG_NR,attr"`
|
||||||
ID string `xml:"ID,attr"`
|
ID string `xml:"ID,attr"`
|
||||||
PrintSpace AltoPrintSpace `xml:"PrintSpace"`
|
PrintSpace *AltoPrintSpace `xml:"PrintSpace"`
|
||||||
}
|
}
|
||||||
type AltoDescription struct {
|
type AltoDescription struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
|
@ -72,7 +93,7 @@ type AltoDescription struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
FileName string `xml:"fileName"`
|
FileName string `xml:"fileName"`
|
||||||
} `xml:"sourceImageInformation"`
|
} `xml:"sourceImageInformation"`
|
||||||
OCRProcessing struct {
|
OCRProcessing *struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
ID string `xml:"ID,attr"`
|
ID string `xml:"ID,attr"`
|
||||||
OcrProcessingStep struct {
|
OcrProcessingStep struct {
|
||||||
|
@ -85,22 +106,22 @@ type AltoDescription struct {
|
||||||
} `xml:"OCRProcessing"`
|
} `xml:"OCRProcessing"`
|
||||||
}
|
}
|
||||||
type AltoLayout struct {
|
type AltoLayout struct {
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
Page AltoPage `xml:"Page"`
|
Page *AltoPage `xml:"Page"`
|
||||||
}
|
}
|
||||||
type Alto struct {
|
type Alto struct {
|
||||||
XMLName xml.Name `xml:"alto"`
|
XMLName xml.Name `xml:"alto"`
|
||||||
Text string `xml:",chardata"`
|
Text string `xml:",chardata"`
|
||||||
Xmlns string `xml:"xmlns,attr"`
|
Xmlns string `xml:"xmlns,attr"`
|
||||||
Xlink string `xml:"xlink,attr"`
|
Xlink string `xml:"xlink,attr"`
|
||||||
Xsi string `xml:"xsi,attr"`
|
Xsi string `xml:"xsi,attr"`
|
||||||
SchemaLocation string `xml:"schemaLocation,attr"`
|
SchemaLocation string `xml:"schemaLocation,attr"`
|
||||||
Description AltoDescription `xml:"Description"`
|
Description *AltoDescription `xml:"Description"`
|
||||||
Layout AltoLayout `xml:"Layout"`
|
Layout *AltoLayout `xml:"Layout"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a Alto) Strings() []AltoString {
|
func (a *Alto) Strings() []*AltoString {
|
||||||
ret := make([]AltoString, 0)
|
ret := make([]*AltoString, 0)
|
||||||
for _, v := range a.Layout.Page.PrintSpace.ComposedBlock {
|
for _, v := range a.Layout.Page.PrintSpace.ComposedBlock {
|
||||||
for _, v1 := range v.TextBlock {
|
for _, v1 := range v.TextBlock {
|
||||||
for _, v2 := range v1.TextLine {
|
for _, v2 := range v1.TextLine {
|
||||||
|
@ -112,24 +133,39 @@ func (a Alto) Strings() []AltoString {
|
||||||
}
|
}
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
func (a *Alto) CalcAbsolute(q *Opts) {
|
||||||
|
for _, v := range a.Layout.Page.PrintSpace.ComposedBlock {
|
||||||
|
for _, v1 := range v.TextBlock {
|
||||||
|
for _, v2 := range v1.TextLine {
|
||||||
|
for _, v3 := range v2.String {
|
||||||
|
v3.AbsCoords(q)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
type Opts struct {
|
type Opts struct {
|
||||||
Ver string `json:"ver,omitempty"`
|
Ver string `json:"ver,omitempty"`
|
||||||
X int `json:"x"`
|
X int `json:"x"`
|
||||||
Y int `json:"y"`
|
Y int `json:"y"`
|
||||||
H int `json:"h"`
|
H int `json:"h"`
|
||||||
W int `json:"w"`
|
W int `json:"w"`
|
||||||
Blur float64 `json:"blur"`
|
Blur float64 `json:"blur"`
|
||||||
Sharpen float64 `json:"sharpen"`
|
Sharpen float64 `json:"sharpen"`
|
||||||
Resizew int `json:"resizew"`
|
Resizew int `json:"resizew"`
|
||||||
Resizeh int `json:"resizeh"`
|
Resizeh int `json:"resizeh"`
|
||||||
Lang string `json:"lang"`
|
Lang string `json:"lang"`
|
||||||
Tempfile string `json:"tempfile"`
|
Tempfile string `json:"tempfile"`
|
||||||
Dispid int `json:"d"`
|
Dispid int `json:"d"`
|
||||||
Gray bool `json:"gray"`
|
Gray bool `json:"gray"`
|
||||||
Src string `json:"src"`
|
Src string `json:"src"`
|
||||||
Bytes []byte `json:"bytes"`
|
Bytes []byte `json:"bytes"`
|
||||||
AddRects bool `json:"add_rects"`
|
AddRects bool `json:"add_rects"`
|
||||||
|
Proportion float64 `json:"proportion"`
|
||||||
|
Encoding string `json:"encoding"`
|
||||||
|
Absolute bool `json:"absolute"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Cli struct {
|
type Cli struct {
|
||||||
|
|
Loading…
Reference in New Issue