queXF 1.8.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News queXF 1.8.0 (Default branch)
# 1  
Old 02-26-2009
queXF 1.8.0 (Default branch)

queXF (pronounced kweks-eff) takes scanned paper forms generated using queXML and reads them. Operators can then verify that queXF has read the form correctly. Once this is done, the data collected can be exported in a fixed width ASCII file with a DDI data description. queXF can be used as an alternative to programs such as Cardiff Teleform and Remark OMR, in some situations. It removes the need to manually enter form data, therefore reducing error and fatigue. It does OMR (Optical Mark Recognition) on each form to determine if boxes have been filled, and can use Tesseract OCR to determine what characters have been entered into boxes. License: GNU General Public License v2 Changes:
The database is now used to manage PDF files to import. Forms are tracked by their SHA1 hash, and a form is only imported more than once if specified by the user. A list of forms that failed to import is also generated. Output to PSPP (SPSS) files is now supported. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
PAPERINFO(3)						     Library Functions Manual						      PAPERINFO(3)

NAME
paperinfo, paperwithsize, paperfirst, paperlast, papernext, paperprev - return informations about a paper SYNOPSYS
#include <paper.h> const struct paper* paperinfo(const char* papername) const struct paper* paperwithsize(double psw, double psh) char* papername(const struct paper*) double paperpswidth(const struct paper*) double paperpsheigth(const struct paper*) const struct paper* paperfirst(void) const struct paper* papernext(const struct paper* pinfo) const struct paper* paperprev(const struct paper* pinfo) const struct paper* paperlast(void) DESCRIPTION
paperinfo() returns a pointer to a struct paper containing informations about the paper with name papername paperwithsize() looks for a paper whose width and height is psw and psh in PostScript points, and return a pointer to a struct paper corresponding to the paper found. papername() returns the name of a paper described by an opaque struct paper object paperpswidth() returns the width, in PostScript points, of a paper described by an opaque struct paper object paperpsheight() returns the height, in PostScript points, of a paper described by an opaque struct paper object paperfirst() and paperlast() return the first and last entries for papers. Iteration from one entry to the next or the previous one can be done with papernext() and paperprev() respectively. SEE ALSO
paperinit(3), paperdone(3) defaultpapername(3) papersize(5) 24 September 1996 PAPERINFO(3)