代码搜索:图像捕捉
找到约 10,000 项符合「图像捕捉」的源代码
代码结果 10,000
www.eeworm.com/read/397686/2400629
h 图像数据.h
extern int SmallMarioImage[6][16*16];
extern int BigMarioImage[5][16*32];
extern int QuestionImage[4][16*16];
extern int StarImage[2][16*16];
extern int FungusDemonImage[3][16*16];
extern int Tor
www.eeworm.com/read/397686/2400638
cpp 图像数据.cpp
/*********************************************
程序设计:罗穆峰 2008-11-20
http://lmf.biaotian.com
E-mail: lmf@biaotian.com
QQ: 16324942 [模范英雄]
本文件中的所有图像均取自 Nintendo 公司 Super Mario Bros. 游戏
*********
www.eeworm.com/read/474295/6819261
pdf 图像显示.pdf
www.eeworm.com/read/369670/9637301
m 图像增强.m
i=imread('D:\mypicture\图片\5.bmp');
imshow(i);
i2=rgb2gray(i);%将RGB图像转换为灰度图像;
figure,imhist(i2);%显示灰度图像的直方图;
[j,t]=histeq(i2,64);%实现直方图的均匀化,有64个灰度级;
figure,imshow(j);
figure,imhist(j);
figure,pl
www.eeworm.com/read/172265/9715262
txt 图像平移.txt
//参数说明:
//lpDIBBits 源图像数据去指针
//lWidth 宽度
//lHeight 高度
//lXOffset X轴线偏移
//lYOffset Y轴线偏移
//函数说明:该函数实现图像的平移操作
BOOL TranslationDIB1(LPSTR lpDIBBits, LONG lWidth, LONG lHeight, LONG lXOffset, LONG
www.eeworm.com/read/172265/9715282
txt 图像旋转.txt
////////////////////////////////////////////////////////////////
//参数说明:
// HWND hWnd:窗口句柄
//程序说明:图像的旋转
BOOL Rotation(HWND hWnd)
{
//定义对话框处理程序
DLGPROC dlgInputBox = NULL;
//设定偏移
www.eeworm.com/read/172265/9715286
txt 图像缩放.txt
////////////////////////////////////////////////////////////////
//参数说明:
// HWND hWnd:窗口句柄
//程序说明:进行图像的缩放
BOOL Zoom(HWND hWnd)
{
//窗口处理函数
DLGPROC dlgInputBox = NULL;
//偏移、源和目标内存
www.eeworm.com/read/172265/9715288
txt 图像镜像.txt
////////////////////////////////////////////////////////////////
//函数参数:
//hWnd是窗口句柄
//Xdirection 是镜像方向
//函数说明:该函数根据输入的方向参数实现窗口图像的镜像处理
BOOL Mirror(HWND hWnd,BOOL XDirection)
{
//偏移和内存大小
DW
www.eeworm.com/read/269552/11094025
ico 新图像.ico
www.eeworm.com/read/269214/11106053