All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.jhocr.element.HocrParagraph Maven / Gradle / Ivy

Go to download

Library to parse and perform conversion from hocr files to pdf, merging the image files and mapping the hocr data into one document.

The newest version!
/**
 * Copyright (©) 2013 Pablo Filetti Moreira & O.J. Sousa Rodrigues
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see .
 */

package com.googlecode.jhocr.element;

import java.util.ArrayList;
import java.util.List;

import com.googlecode.jhocr.attribute.BBox;
import com.googlecode.jhocr.attribute.ParagraphDirection;

/**
 * Class used to store information "ocr_paragraph" element and their children.
* Element example:
* {@literal

} */ public class HocrParagraph extends HocrElement { public static final String TAGNAME = "p"; public static final String CLASSNAME = "ocr_par"; private HocrCarea carea; private ParagraphDirection direction = ParagraphDirection.LTR; private List lines = new ArrayList(); /** * Constructs the {@link com.googlecode.jhocr.element.HocrParagraph} with a unique id and a coordinates {@link com.googlecode.jhocr.attribute.BBox}. * * @param id * sets the id of element. * @param bbox * sets the coordinates of element. * @param image * sets the {@link com.googlecode.jhocr.attribute.ParagraphDirection} of element. */ public HocrParagraph(String id, BBox bbox, ParagraphDirection direction) { super(id, bbox); this.direction = direction; } @Override public String getClassName() { return CLASSNAME; } @Override public String getTagName() { return TAGNAME; } /** * @return a collection of {@link#lines}. */ public List getLines() { return lines; } /** * Sets the {@link#lines}. * * @param lines * will be set. */ public void setLines(List lines) { this.lines = lines; } /** * Adds a new {@link com.googlecode.jhocr.element.HocrLine#line} to the current {@link#lines}. * * @param line * will be added to {@link#lines}. */ public void addLine(HocrLine line) { line.setParagraph(this); getLines().add(line); } /** * @return the {@link #carea} object. */ public HocrCarea getCarea() { return carea; } /** * Sets the {@link #carea}. * * @param carea * will be set. */ public void setCarea(HocrCarea carea) { this.carea = carea; } /** * @return the text {@link #direction} of the paragraph. */ public ParagraphDirection getDirection() { return direction; } /** * Set the text {@link #direction} of the paragraph. * * @param direction * will be set. */ public void setDirection(ParagraphDirection direction) { this.direction = direction; } /** * @return the {@link #toString()} value this element. */ @Override public String toString() { return "HocrParagraph{" + super.toString() + ", direction=" + direction + ", lines=" + lines.size() + "}"; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy