CandidateOCRChoice.java :  » UnTagged » ampthy » net » sourceforge » javaocr » ocrPlugins » handWriting » Android Open Source

Android Open Source » UnTagged » ampthy 
ampthy » net » sourceforge » javaocr » ocrPlugins » handWriting » CandidateOCRChoice.java
// CandidateOCRChoice.java
// Copyright (c) 2010 William Whitney
// All rights reserved.
// This software is released under the BSD license.
// Please see the accompanying LICENSE.txt for details.
package net.sourceforge.javaocr.ocrPlugins.handWriting;

import java.util.ArrayList;
import java.util.logging.Logger;
import net.sourceforge.javaocr.scanner.accuracy.OCRIdentification;

/**
 * Provides the different choices you have to determine a character.
 * @author William Whitney
 */
public class CandidateOCRChoice
{

    private ArrayList<OCRIdentification> rankedIdentList = new ArrayList<OCRIdentification>();
    private static final Logger LOG = Logger.getLogger(CandidateOCRChoice.class.getName());

    public ArrayList<OCRIdentification> getRankedIdentList()
    {
        return rankedIdentList;
    }

    public void addOCRIdent(OCRIdentification currIdent)
    {
        rankedIdentList.add(currIdent);
    }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.