Repository for OpenCV's extra modules
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
611 B

#include <opencv2/v4d/v4d.hpp>
using namespace cv;
using namespace cv::v4d;
int main() {
Ptr<V4D> window = V4D::make(Size(1280, 720), cv::Size(), "GL Blue Screen");
window->gl([](){
//Sets the clear color to blue
glClearColor(0.0f, 0.0f, 1.0f, 1.0f);
});
window->run([=]() {
window->gl([]() {
//Clears the screen
glClear(GL_COLOR_BUFFER_BIT);
});
//If onscreen rendering is enabled it displays the framebuffer in the native window.
//Returns false if the window was closed.
return window->display();
});
}