Modeled and rendered in Blender. Auto Painted in Corel Painter Essentials.
CamStylus version 0.9.1 released!
Today I released the first official version of CamStylus program. It is a free program (currently only for Windows) which allows interaction with your PC using your webcam. It is still at the very early stages of development so keep your expectations real. I am going to update this program more and more whenever I get some spare time to make it more easier to use.
Please check out this project’s website for more information.
You can always access the latest version from Download page at CamStylus website.
Velvet
I created and rendered this in Blender. There are very useful tutorials about how to create similar images. Just search Google for “Blender Cloth Simulation” and start.
Rose
How to use VBScript in C++ (Using Qt)
In this article I’ll explain the process of combining C++ and VBScript codes together. There are many situations in which you find yourself in desperate need of some simple code that can handle what your program wants to do. An example that comes to my mind is using DDE Protocol in Windows. It can be heartbreaking to try and write a quick DDE handling program using C++. Well on the other hand it is extremely easy using VBScript. But I am not going to talk about DDE I this post. Search Google for “how to connect to DDE using VBScript” and combine that with what you learn from this post. So here it is:
Continue reading “How to use VBScript in C++ (Using Qt)”How to use System-Wide Hotkeys in your Qt application
First of all, this method can only be used in Windows because it makes use of the RegisterHotKey function which is a Win32 API function. So if you want to trigger a function in your Qt application even when your application is out of focus or minimized or even hidden then follow the steps below one by one:
Continue reading “How to use System-Wide Hotkeys in your Qt application”How to make an application “Alway on Top” in C++ (For Qt and Win32)
I use the following method to make an application remain on top of other windows in Qt:
SetWindowPos
(
(HWND)winId(),
HWND_TOPMOST,
window_top_pos,
window_left_pos,
window_width,
window_height,
SWP_SHOWWINDOW
);
Note that window_top_pos, window_left_pos, window_width and window_height are variables and you can replace them with your own.
Please be aware that this is a Win32 API function so it won’t work in Linux or MAC.
Don’t forget to add the include file to your code.
#include "windows.h"
And add the required library to your .PRO file.
LIBS += -luser32
Opticount website in on!
Opticount website is up and running now. You can access it using the link below:
https://opticount.wordpress.com/
Kayboldum
Sen ben biz derken beni sıfırla bir arasında kaybettim. Kayboldum. Bulaştın sıfırlarıma birlerime, üzerime yazdın kendini, seni ben yaptın beni sen. Kayboldum. Ben mi senim sen mi bensin derken uyandım birden bire. Birden sıfıra. Kayboldum. Hiç yokmuşum sensiz. O kadar sıfırmışım ki birleşince anladım. Kayboldum. Biz mi seniz sen mi bizsin derken anladım. Sen bizsin biz sensin, ben sıfır sen birsin.
OpenCV Multiple Object Trackers (Using Camshift) Video Demo
Following video demonstrates the application in my previous post about Multiple Object Tracking while it is tracking 3 different objects.
You can find the post using the link below:
http://amin-ahmadi.com/2015/10/20/camshift-multiple-trackers-application-and-source-code/
https://www.youtube.com/watch?v=-Yy_GA-7SNM