-
windows核心编程源程序
windows核心编程源程序-windows core programming source
- 2022-02-21 12:46:15下载
- 积分:1
-
员工信息增删改查
java菜鸟,上课时跟着老师一起敲出来的,勿喷
- 2022-01-25 14:11:51下载
- 积分:1
-
全景图像抠图
从两个图像,匹配、 使用单应矩阵,和创建一个图像作为一个全景图像中提取特征点和特征点的查找。
- 2022-05-29 10:03:51下载
- 积分:1
-
VC毛玻璃
#define GDIPVER 0x0110 //定义高版本的GDI+(1.1)
#include
#include
#include
#include
#include
#pragma comment(lib,"GdiPlus.lib")
using namespace Gdiplus;
#include
#pragma comment(lib,"dwmapi.lib")
//Aero效果是否已启用
BOOL IsCompositionEnabled()
{
BOOL bEnabled,bResult;
bResult = (SUCCEEDED(DwmIsCompositionEnabled(&bEnabled)) && bEnabled);
return bResult;
}
//对已分层的窗口启动玻璃效果
HRESULT EnableBlurBehindWindow(HWND hWnd, //窗口句柄
BOOL bEnable = TRUE, //启用或禁用
HRGN hRgn = 0, //模糊窗体中某个区域
BOOL bTransitionOnMaximized = FALSE) //最大化时是否启用
{
DWM_BLURBEHIND blurBehind = { 0 };
blurBehind.dwFlags = DWM_BB_ENABLE | DWM_BB_TRANSITIONONMAXIMIZED;
blurBehind.fEnable = bEnable;
blurBehind.fTransitionOnMaximized = bTransitionOnMaximized;
if (bEnable && hRgn != NULL)
{
blurBehind.dwFlags |= DWM_BB_BLURREGION;
blurBehind.h
- 2023-05-01 15:10:04下载
- 积分:1
-
This file focuses on the programme of serial port, it has perfect function.
该文件用于串口通信编程 功能完全-This file focuses on the programme of serial port, it has perfect function.
- 2023-05-10 18:00:03下载
- 积分:1
-
A small game is very fun, and hope for all of us ~ ~ ~
一个小游戏很好玩的,希望对大家有用-A small game is very fun, and hope for all of us ~ ~ ~
- 2022-12-01 12:25:03下载
- 积分:1
-
对话框加位图bitmap_preview_dialog_source
对话框加位图bitmap_preview_dialog_source-dialog increase bitmap bitmap_preview_dialog_source
- 2022-03-12 17:06:51下载
- 积分:1
-
实现边锋等网络棋牌游戏的解锁定时候的验证计算过程。
实现边锋等网络棋牌游戏的解锁定时候的验证计算过程。-Realize winger board games-to-peer network solution authentication lock time calculation process.
- 2022-08-09 22:35:09下载
- 积分:1
-
mfc实现的一个计算器
运用微软的基础类库编写的一个简易的计算器,能实现日常生活所需,功能相对完善。
- 2022-06-29 02:55:08下载
- 积分:1
-
验证码简单去背景+ORC识别
资源描述
验证码简单去背景+ORC识别
m_tesseract = new TesseractProcessor();
m_tesseract.Init(m_path, m_lang, (int)TesseractEngineMode.DEFAULT);
m_tesseract.SetVariable("tessedit_pageseg_mode", TesseractPageSegMode.PSM_AUTO.ToString());
- 2023-03-31 01:45:04下载
- 积分:1