Sha256: 0d0aa53fbf30c6f7fa9648c9d0efb5066da2e2724a30294a2ddcc2264b12ac6c
Contents?: true
Size: 954 Bytes
Versions: 3
Compression:
Stored size: 954 Bytes
Contents
// Copyright 2006 Google Inc. All Rights Reserved. // Author: <rays@google.com> (Ray Smith) // #ifndef OCR_TESSERACT_SVSHOWIM_H__ #define OCR_TESSERACT_SVSHOWIM_H__ #include "host.h" #include "img.h" class ScrollView; // Override of a tesseract function to display an image in a window. // This function redirects the display to ScrollView instead of the // stubbed-out functions in tesseract. void sv_show_sub_image(IMAGE* source, // Image to show. inT32 xstart, // Bottom-left coords. inT32 ystart, inT32 xext, // Size of rectangle to show. inT32 yext, ScrollView* win, // Window to draw in. inT32 xpos, // Place to show bottom-left. inT32 ypos); // Y position. #endif // OCR_TESSERACT_SVSHOWIM_H__
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tesseract_bin-1.0.2 | vendor/tesseract-2.04/image/svshowim.h |
tesseract_bin-1.0.1 | vendor/tesseract-2.04/image/svshowim.h |
tesseract_bin-1.0.0 | vendor/tesseract-2.04/image/svshowim.h |