资源简介
test.cpp
代码片段和文件信息
#include
#include
#include
using namespace cv;
#include
#include
bool drawing_box = false;
bool gotBox = false;
Rect box;
Point downPoint;
/*----定义鼠标事件--画矩形区域----*/
void mouseRectHandler(int event int x int y int flags void *param)
{
switch (event)
{
case CV_EVENT_MOUSEMOVE:
if (drawing_box)
{
//鼠标的移动到downPoint的右下角
if (x >= downPoint.x && y >= downPoint.y)
{
box.x = downPoint.x;
box.y = downPoint.y;
box.width = x - downPoint.x;
box.height = y - downPoint.y;
}
//鼠标的移动到downPoint的右上角
if (x >= downPoint.x && y <= downPoint.y)
{
box.x = downPoint.x;
box.y = y;
box.width = x - downPoint.x;
box.height
- 上一篇:5G中文协议
- 下一篇:c6client.cpp
相关资源
- C语言大程序游戏大富翁24707
- 三国志游戏源代码C语言版本
- tkdz.cpp
- 科锐C语言系列视频教程.txt
- [郝斌]C语言自学视频教程共180集.txt
- 音乐播放器mfc.doc
- 从C语言转C++简明教程_v5.3.zip
- 坦克大战:(MFC]).zip
- game.cpp
- Demo: c/c++动态库DLL调用,c#等其他语言
- 模拟一个飞机票订票和退票系统
- C++Primer第五版---高清版.zip
- 维吉尼亚密码的简单实现
- 从放弃C语言到使用C刷算法的简明教程
- vc6.0上位机教程.docx
- VisualC++范例大全源代码+PDF_百度云盘地
- C++游戏服务器开发从入门到掌握.txt
- C++2017.txt
- 02_C++PrimerPlus_中文版_第6版_超清.txt
- c语言学习例题.docx
- 源.cpp
- Steffensen.cpp
- vc++著名的木马程序BO2000源代码.rar
- 语音信号端点检测(VC++6.0)
- zw_duanzhiying-1870490-C语言库函数.zip
- zw_RSA算法C语言实现.zip
- zw_MFCCombox自动提示.zip
- 视觉识别特定草莓等其他水果
- welch功率谱的c语言程序.txt
- 蓝桥杯青少组C++赛前集训包.pdf
评论
共有 条评论