package xml; public class fields { /*ICDAR XML fields*/ private double x; /*text region upper left x coordinate*/ private double y; /*text region upper left y coordinate*/ private double w; /*text region width*/ private double h; /*text region height*/ private double score; /* t-hog score*/ public fields () {} public fields (double x, double y, double w, double h) { this.x = x; this.y = y; this.w = w; this.h = h; } public double get_x () { return x; } public void set_x (double x) { this.x = x; } public double get_y() { return y; } public void set_y (double y) { this.y = y; } public double get_w () { return w; } public void set_w (double w) { this.w = w; } public double get_h() { return h; } public void set_h (double h) { this.h = h; } public double get_score() { return score; } public void set_score (double score) { this.score = score; } }