Another excellent tutorial! Content and presentation at its best! Thank you very much!
@PortfolioCourses Жыл бұрын
You're very welcome, I'm glad you enjoyed it! :-)
@gabrieldias64302 жыл бұрын
really nice video, thanks for sharing your knowledge
@PortfolioCourses2 жыл бұрын
You're welcome Gabriel, I'm glad that you enjoyed the video! :-)
@lombard2125 Жыл бұрын
Thanks a lot, a have't heard about the EOF method Appreciate your instructions😅
@PortfolioCourses Жыл бұрын
You're welcome! :-)
@malekal_aedee43412 жыл бұрын
it worked! thank you so much!!
@PortfolioCourses2 жыл бұрын
You're welcome! 😀
@karibiro4945 Жыл бұрын
correct, strait! how it must to be done! thanks a lot!
@dobcs3236 Жыл бұрын
Hi. Can i create owner library like OpenCV by c++ SLT only ? What do I need to learn that
@PortfolioCourses Жыл бұрын
You could use the C++ STL to create something like OpenCV. OpenCV includes a number of functionalities, so you would very likely use more than C++ STL to implement it. The C++ STL isn't necessarily built to optimize performance, so you may want to re-implement data structures and algorithms yourself instead. There is a lot to OpenCV, before attempting to create something like that you would want to have a reasonably strong background in mathematics, algorithms, etc. Something like OpenCV is typically made by many individuals and not just one person, but it would be a great exercise to learn how some individual aspect of OpenCV works, like one function even, and then try to implement it yourself and understand it. :-)
@dobcs3236 Жыл бұрын
@@PortfolioCourses Can you explain to me a specific educational program?
@dark-ks9ww2 жыл бұрын
Please sir can u give me some tips on how can i improve my logic skills in programming i can't solve programming problems i practice but i can't get any good at programming when i try to solve a problem i end up looking for the solution online
@PortfolioCourses2 жыл бұрын
I've started working on this playlist to help beginners that are struggling with programming in general: kzbin.info/www/bejne/iHXZnX2Xmqykr7c. Most programmers that solve problems all day for a living "look for a solution online", that's why websites like Stackoverflow are so popular. :-) But I know what you mean, it's hard to solve "new problems" you've never seen before. If you do lots and lots of problems, especially if you do so over years and years, eventually even solving new problems becomes easier. What happens is that our brains recognize patterns in the problems, "oh this problem is like this other problem I solved except that...", and we get better at solving them. But it can take a long, long time to get there, and even then as programmers we'll always use Google/etc to help solve problems we haven't seen before.