opencv 桌面捕获在大字体模式下仅返回窗口上的部分屏幕

Posted

技术标签:

【中文标题】opencv 桌面捕获在大字体模式下仅返回窗口上的部分屏幕【英文标题】:opencv desktop capture returns only part of the screen on windows in large fonts mode 【发布时间】:2018-07-20 16:03:50 【问题描述】:

我使用这个标准示例通过 opencv 抓取屏幕。如果我在控制面板中的字体大小为 100%,它可以正常工作:

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 / 1;  //change this to whatever size you want to resize to
    width = windowsize.right / 1;
    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;
    SelectObject(hwindowCompatibleDC, hbwindow);
    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
    DeleteObject(hbwindow);
    DeleteDC(hwindowCompatibleDC);
    ReleaseDC(hwnd, hwindowDC);
    return src;


int main() 
    HWND hwndDesktop = GetDesktopWindow();
    Mat src = hwnd2mat(hwndDesktop);
    imwrite("output.bmp", src);
    return 0;

但如果我启用大字体(至少在 Windows 10 上),那么它只给我屏幕的左上角:

我该如何解决这个问题?

【问题讨论】:

【参考方案1】:

我认为您需要通过创建corresponding manifest entry 将应用程序标记为支持 HighDpi 的。否则,您的应用程序将处理 DPI 虚拟化。

【讨论】:

【参考方案2】:

另一种解决方案可能是在程序开始时调用 SetProcessDPIAware()。帮助了我。

【讨论】:

以上是关于opencv 桌面捕获在大字体模式下仅返回窗口上的部分屏幕的主要内容,如果未能解决你的问题,请参考以下文章

OPENCV 桌面捕获第二部分

如何使用 UIAccessibility 协议在 iOS 上的模式弹出窗口中捕获焦点?

Java OpenCV如何从HTTP URL捕获视频

以Windows形式捕获openCV视频[重复]

CentOS 6.6系统桌面字体怎么设置

C# 使用 SlimDX 获取窗口/桌面截图