importorg.opencv.core.Core;publicclassMain{publicstaticvoidmain(String[]args)throwsInterruptedException{// 步骤1:导入OpenCV库System.loadLibrary(Core.NATIVE_LIBRARY_NAME);// 步骤2:初始化屏幕捕获对象ScreenCapturescreenCapture=newScreenCapture();// 步骤3:循环截取屏幕并显示截图while(true){// 截取屏幕图像M...