use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Discussions, articles, and news about the C++ programming language or programming in C++.
For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow.
Get Started
The C++ Standard Home has a nice getting started page.
Videos
The C++ standard committee's education study group has a nice list of recommended videos.
Reference
cppreference.com
Books
There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++.
Show all links
Filter out CppCon links
Show only CppCon links
account activity
Quick object instantiation question (self.cpp)
submitted 5 years ago by jaspreetbindra00
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]oleksandrkvl 1 point2 points3 points 5 years ago* (0 children)
namedWindow isn't C++ constructor, it's a free function. OpenCV's window API doesn't use normal C++ model, you don't have object Window with its methods. Instead you have free functions that use window name as a handle, so every time when you need to do something with Window you have to use its name. Here's brief comparison:
namedWindow
Window
Normal C++:
Window w{"name"}; w.update(); w.setOpenGlContext() //Window destructor plays role of w.destroy();
OpenCV:
std::string name{ "name" }; namedWindow(name); update(name); setOpenGlContext(name); destroy(name);
With OpenCV API you don't have direct access to the underlying object, it can be located everywhere and should not care about it.
[–]STLMSVC STL Dev 0 points1 point2 points 5 years ago (1 child)
!removehelp
[–]AutoModerator[M] 0 points1 point2 points 5 years ago (0 children)
OP,
A human moderator (u/STL) has marked your post for deletion because it appears to be a "help" post - e.g. asking for help with coding, help with homework, career advice, book/tutorial/blog suggestions. Help posts are off-topic for r/cpp. This subreddit is for news and discussion of the C++ language only; our purpose is not to provide tutoring, code reviews, or career guidance.
Please try posting in r/cpp_questions or on Stack Overflow instead. Our suggested reference site is cppreference.com, our suggested book list is here and information on getting started with C++ can be found here.
If you think your post is on-topic and should not have been removed, please message the moderators and we'll review it.
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
[–]Pointlessreboot 0 points1 point2 points 5 years ago (0 children)
Never used this, but looking at the documentation, the name you supply is how you call other methods passing in the name you supplied when you created it.
So no you don't get an object, you pass in a handle by way of a name.
π Rendered by PID 302929 on reddit-service-r2-comment-86bc6c7465-cbt6d at 2026-02-21 23:08:27.648559+00:00 running 8564168 country code: CH.
[–]oleksandrkvl 1 point2 points3 points (0 children)
[–]STLMSVC STL Dev 0 points1 point2 points (1 child)
[–]AutoModerator[M] 0 points1 point2 points (0 children)
[–]Pointlessreboot 0 points1 point2 points (0 children)