svshowim.h

来自「一个google的OCR源码」· C头文件 代码 · 共 26 行

H
26
字号
// 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__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?