Any explanation on different CPU usages from these two scenarios:
- when using qPow(x,2), CPU usage 14%;
- instead x*x, drops to 3%
I just write a simple Qt UI dealing with some img processing.
Very appreciated to any feedbacks!!
For qPow(x,2), it is Okay to use x*x; but what if I need qCos for instance.