opencv - 如何在 OpenCV 中捕获桌面(即将位图转换为 Mat)?

标签 opencv bitmap desktop mat

我想使用 OpenCV 来处理我的桌面,就好像它是视频流一样。
我熟悉 OpenCV。
我不熟悉 Windows API。 我知道还有其他方法可以捕获屏幕,但出于我的问题的目的,我需要使用 OpenCV 来完成。

这是我的( super 幼稚的)代码:

HWND hDesktopWnd;
HDC hDesktopDC;
hDesktopWnd=GetDesktopWindow();
hDesktopDC=GetDC(hDesktopWnd);

// get the height and width of the screen
int height = GetSystemMetrics(SM_CYVIRTUALSCREEN);
int width = GetSystemMetrics(SM_CXVIRTUALSCREEN);

// create a bitmap
HBITMAP hbDesktop = CreateCompatibleBitmap( hDesktopDC, width, height);

Mat src(height,width,CV_8UC4);
src.data = (uchar*)hbDesktop;

imshow("output",src);  //fails :(

StackOverflow 上也有类似的问题,不过要么是针对老式的 OpenCV,要么是针对 Android 操作系统。
我在 Windows 7 64x 上
Opencv 2.4.3

感谢任何能回答这个问题的人。

最佳答案

经过多次 反复试验后,我设法编写了一个函数来执行此操作。这是给任何可能想要它的人的:

#include "stdafx.h"
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <opencv2/highgui/highgui.hpp>
#include <Windows.h>
#include <iostream>
#include <string>
using namespace std;
using namespace cv;

Mat hwnd2mat(HWND hwnd){

    HDC hwindowDC,hwindowCompatibleDC;

    int height,width,srcheight,srcwidth;
    HBITMAP hbwindow;
    Mat src;
    BITMAPINFOHEADER  bi;

    hwindowDC=GetDC(hwnd);
    hwindowCompatibleDC=CreateCompatibleDC(hwindowDC);
    SetStretchBltMode(hwindowCompatibleDC,COLORONCOLOR);  

    RECT windowsize;    // get the height and width of the screen
    GetClientRect(hwnd, &windowsize);

    srcheight = windowsize.bottom;
    srcwidth = windowsize.right;
    height = windowsize.bottom/2;  //change this to whatever size you want to resize to
    width = windowsize.right/2;

    src.create(height,width,CV_8UC4);

    // create a bitmap
    hbwindow = CreateCompatibleBitmap( hwindowDC, width, height);
    bi.biSize = sizeof(BITMAPINFOHEADER);    //http://msdn.microsoft.com/en-us/library/windows/window/dd183402%28v=vs.85%29.aspx
    bi.biWidth = width;    
    bi.biHeight = -height;  //this is the line that makes it draw upside down or not
    bi.biPlanes = 1;    
    bi.biBitCount = 32;    
    bi.biCompression = BI_RGB;    
    bi.biSizeImage = 0;  
    bi.biXPelsPerMeter = 0;    
    bi.biYPelsPerMeter = 0;    
    bi.biClrUsed = 0;    
    bi.biClrImportant = 0;

    // use the previously created device context with the bitmap
    SelectObject(hwindowCompatibleDC, hbwindow);
    // copy from the window device context to the bitmap device context
    StretchBlt( hwindowCompatibleDC, 0,0, width, height, hwindowDC, 0, 0,srcwidth,srcheight, SRCCOPY); //change SRCCOPY to NOTSRCCOPY for wacky colors !
    GetDIBits(hwindowCompatibleDC,hbwindow,0,height,src.data,(BITMAPINFO *)&bi,DIB_RGB_COLORS);  //copy from hwindowCompatibleDC to hbwindow

    // avoid memory leak
    DeleteObject (hbwindow); DeleteDC(hwindowCompatibleDC); ReleaseDC(hwnd, hwindowDC);

    return src;
}

关于opencv - 如何在 OpenCV 中捕获桌面(即将位图转换为 Mat)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14148758/

相关文章:

c# - 给定一个颜色对象列表,找到出现频率最高/最少的颜色,并将其作为颜色对象返回

android - 在 RemoteViews 中获取 ImageView 的大小

.net - 如何使用.NET CF在WebBrowser控件中获取所有页面的位图

windows - 将文件保存到桌面 - 可行性?

python - Python 中的 SIFT 对象匹配

animation - 如何在opencv/face distortion中重新定位人脸点

wpf - Web 和 WPF 应用程序的自动化解决方案

java - 打开目录

JavaCV 示例无法正常工作 - 我缺少什么?

c++ - 如何在opencv中交换Mat的行?