From 1c2ac57b897249e47d00673e43dee091334d23b0 Mon Sep 17 00:00:00 2001 From: kallaballa Date: Mon, 17 Apr 2023 08:17:48 +0200 Subject: [PATCH] fixed window title --- modules/v4d/samples/custom_source_and_sink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/v4d/samples/custom_source_and_sink.cpp b/modules/v4d/samples/custom_source_and_sink.cpp index 87d92558f..dfcc67b49 100644 --- a/modules/v4d/samples/custom_source_and_sink.cpp +++ b/modules/v4d/samples/custom_source_and_sink.cpp @@ -7,7 +7,7 @@ int main(int argc, char** argv) { using namespace cv::viz; string hr = "Hello Rainbow!"; - Ptr v4d = V4D::make(Size(1280, 720), "Video Editing"); + Ptr v4d = V4D::make(Size(1280, 720), "Custom Source/Sink"); //Make a Source that generates rainbow frames. Source src([=](cv::UMat& frame){ static long cnt = 0;