代码搜索结果
找到约 73,884 项符合
Image 的代码
image.pas
unit Image;
interface
uses
SysUtils, Types, Classes, Variants, QGraphics, QControls, QForms, QDialogs,
QMenus, QTypes, QExtCtrls, QStdCtrls, Base;
type
TFrmImageViewer = class(TFrmPolymorphic
image.xfm
inherited FrmImageViewer: TFrmImageViewer
Left = 257
Top = 145
Height = 220
ActiveControl = BtnOpen
Caption = 'Polymorphic Image Viewer'
PixelsPerInch = 97
TextHeight = 15
TextWidth =
image.~xfm
inherited FrmImageViewer: TFrmImageViewer
Left = 219
Top = 156
Height = 220
ActiveControl = BtnOpen
Caption = 'Polymorphic Image Viewer'
PixelsPerInch = 97
TextHeight = 15
TextWidth =
image.~pas
unit Image;
interface
uses
SysUtils, Types, Classes, Variants, QGraphics, QControls, QForms, QDialogs,
QMenus, QTypes, QExtCtrls, QStdCtrls, Base;
type
TFrmImageViewer = class(TFrmPolymorphic
image.h
/*#############################################################################
* 文件名:image.h
* 功能: 实现了指纹图像的基本操作
* modified by PRTsinghua@hotmail.com
#############################################
image.c
/*#############################################################################
* 文件名:image.c
* 功能: 实现了指纹图像的基本操作
* modified by PRTsinghua@hotmail.com
#############################################
image.c
/*画图函数的代码*/
#include "image.h"
/*位图填充*/
void fill_image(PixImage * image, Color32 color, int x, int y, int w, int h)
{
if (w == 0)
w = image->width - x;
if (h == 0)
h = image
image.cpp
// label image components
#include
#include "lqueue.h"
#include "make2db.h"
class Position {
friend void InputImage();
friend void OutputImage();
friend void Label();
image.h
/******************************************************************************
* 光学字符识别程序
* 文件名:image.h
* 功能 :图像处理相关函数定义
* modified by PRTsinghua@hotmail.com
************************************