Category: C/C++ Programming

  • OpenCV and C#

    I came across a link that showed how to program something in C++ as a dll library using OpenCV and then use the dll inside a C# program. Very interesting topic which would be good to expand on. here is the link: http://www.andrew-seaford.co.uk/opencv-csharp-wpf-application/

  • OpenCV Library Bin VS2017

    Link to precompile binary of OpenCV 4.0.0 with Visual studio 2017 for x64 bit Machines. The library has all compilations including contrib. http://guivi.one/C%2B%2BProgramming/OpenCV-4.0.0-VS17.zip

  • CodeLite With wxWidgets and TDM-GCC

    Download and Install CodeLite.Download and install TDM-GCC.Download and install wxWidget. Now go to the directory wxWidget\build\msw here we are going to first of all claen the project just in case. mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 BUILD=release cleanThen the library can be built by running: mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 BUILD=releaseIf the computer compiling the wxWidget…

  • Interesting IDE

    I was looking around for an interesting GUI library which would allow me to make cross platform programs for commercial use for free. Qt Creator which is a great tool, can be use but there are a lot of comments out there mentioning that if one wants to use the Qt library for commercial purposes…

  • xlsx library for C++

    I had the need to make excel spread sheets for humans to see results a program I made with C++ was producing.I used to use a licensed library named libxl but after moving to newer versions of Visual Studio I ended up having difficulties to get this library working (probably because my license was for…

  • Compiling OpenCV with MinGW for Qt in Windows

    This is a simple update of a previews article which I had written some years ago for compiling OpenCV in Ubuntu linux. This time I am going to be compiling OpenCV under MinGW 5.3.0 for Windows so that I can use OpenCV in Qt with the MinGW compiler. I used similar steps to compile the…

  • Portable C++ IDE with OpenCV

    This Christmas I came across making an easy way for developing programs using OpenCV. When thinking but a possible solution the thought of a portable IDE came to me. This is something that I had not seen before. When looking about this I came across http://codeblocks.codecutter.org/ so in reality most of the hard work had…