-
[Deep Learning]ONNX Runtime C++(1):DL Model Inference Using ONNX Runtime
Example: FnsCandyStyleTransfer This example is based on microsoft/onnxruntime-inference-examples. I use Windows x64 platform, so LibPNG is a dependency: Compile and use libpng and zlib in Visual Studio References Error happened.
-
[Dive into C++] lvalue/rvalue, references, const in C++
I have found a really good resource for learning C++ on Youtube: CopperSpice! It has a suitable amount of information: not too much, and not too little. Great!😀👍 I have been reading and writing C++ code extensively for these two years. I like this language: it’s fast, giving developers a great deal of details and…
-
How to use std::vector in C++
std::vector is a dynamic array with continuous physical storage space. There is no need to specify its size, which will expand as needed. compared to normal arrays, std::vector provides many APIs. Get Started Adds an element to its end: push_back Removes the last element: pop_back Returns the number of elements: size How to iterate over…
-
[DevLog] Implement FABRIK in C++ for the Three Bone Chain IK Problem
I completed a simple three bone chain IK demo using the FABRIK algorithm and raylib library. It’s simple enough and fast, and shows good results. Next time I want to add joint rotation limits to make it more exciting. 💪 Check out my Github repository for more details of IK problems. Error happened.