Rules for allocating and Deallocating
#Rules #Memory #allocate
http://www.modernescpp.com/index.php/c-core-guidelines-allocating-and-deallocating
C++ standards support in compilers
Gcc - https://goo.gl/RJQejA
Clang - https://goo.gl/gaVDnX
Visual Studio - https://goo.gl/dXECj3
Code for above tutorial
#Code
https://github.com/spmallick/learnopencv/tree/master/tracking
How to split a string
#String #Manipulation
https://www.fluentcpp.com/2017/04/21/how-to-split-a-string-in-c/
C++ Core Guidelines: Rules for Enumerations
http://www.modernescpp.com/index.php/c-core-guidelines-rules-for-enumerations
Visual Studio gone wrong
#Errors #Issues
https://asmbits.blogspot.com/2017/11/c11-and-msvc-gone-wrong.html
C++ Design Tip : Objects should not point back to an object that owns them
#Tips
https://deque.blog/2017/11/20/c-design-tip-objects-should-not-point-back-to-an-object-that-owns-them/
QT for web assembly
#Emscripten #WASM #WebAssembly #Qt
http://qtandeverything.blogspot.in/2017/11/qt-for-webassembly-update.html
Problems with current model
#include #issues
https://clang.llvm.org/docs/Modules.html#problems-with-the-current-model
Simplifying Compile-Time Options With if constexpr
#cpp17
https://philippegroarke.com/blog/2017/11/20/simplifying-compile-time-options-with-if-constexpr/
The code of above tutorial is available at
https://github.com/spmallick/learnopencv/tree/master/FaceMorph
Tutorial and examples for std::array
#STL #array #tutorial
http://thispointer.com/c11-stdarray-tutorial-and-examples/
Another blog on what's new in C++17
https://www.viva64.com/en/b/0533/#ID0EKJ6O
A curated list of C/C++ frameworks, libraries, resources, and shiny things.
#frameworks #libraries #resources #etc
https://github.com/fffaraz/awesome-cpp
What's new in C++17
#Cpp17
https://github.com/AnthonyCalandra/modern-cpp-features/blob/master/CPP17.md#acknowledgements
Simplistic programming is underrated
https://lemire.me/blog/2017/12/06/simplistic-programming-is-underrated/
Learn object tracking using OpenCV in C++
#OpenCV #Features #Tracking
https://goo.gl/XkFSGE
Smart Output Iterators: A Symmetrical Approach to Range Adaptors
https://www.fluentcpp.com/2017/11/28/output-iterator-adaptors-symmetry-range-adaptors/
Lessons to learn from the old well implemented projects: Prince of Persia && Doom3.
#lesson #inspiration #perspiration
http://cppdepend.com/blog/?p=179
Electronic Arts Standard Template Library
#CPP11 #CPP14 #STL #Games #Optimized
https://goo.gl/5VKvIO
For the uninitiated
Introduction To WebAssembly
#WASM #WebAssembly
https://www.smashingmagazine.com/2017/05/abridged-cartoon-introduction-webassembly/
C++ Core Guidelines: Rules for Unions
#Unions
http://www.modernescpp.com/index.php/c-core-guidelines-rules-for-unions
How to install OpenCV on windows
#OpenCV #Windows
https://www.learnopencv.com/install-opencv3-on-windows/
Face morph using OpenCV in C++
#OpenCV #Vision #Face_morph
https://www.learnopencv.com/face-morph-using-opencv-cpp-python/
One of the notable advantages of using std::array is that you can use range based for loop for it
Читать полностью…Small Vector Optimization
#Optimize #Vector #Memory
https://stoyannk.wordpress.com/2017/11/18/small-vector-optimization/