Comments on: Stackblur – C++ multi-threaded version of fast blur algorithm http://vitiy.info/stackblur-algorithm-multi-threaded-blur-for-cpp/ Programming, architecture and design (ะก++, QT, .Net/WPF, Android, iOS, NoSQL, distributed systems, mobile development, image processing, etc...) Tue, 12 May 2015 14:48:00 +0000 hourly 1 https://wordpress.org/?v=5.4.2 By: Royi http://vitiy.info/stackblur-algorithm-multi-threaded-blur-for-cpp/#comment-45910 Tue, 12 May 2015 14:48:00 +0000 http://vitiy.info/?p=130#comment-45910 In reply to Victor Laskin.

https://github.com/RoyiAvital/FastGuassianBlur

]]>
By: Victor Laskin http://vitiy.info/stackblur-algorithm-multi-threaded-blur-for-cpp/#comment-20736 Wed, 06 Aug 2014 15:02:38 +0000 http://vitiy.info/?p=130#comment-20736 In reply to Dr-Emann.

This is just simple thread class – contains virtual void run() function to do some job asynchronously. Has start(); and wait(); methods – one runs thread task and another waits until its finished. So you can use any thread implementation here (c++11 std::thread, boost::thread from boost lib, etc).

]]>
By: Dr-Emann http://vitiy.info/stackblur-algorithm-multi-threaded-blur-for-cpp/#comment-20728 Wed, 06 Aug 2014 13:49:48 +0000 http://vitiy.info/?p=130#comment-20728 I can’t seem to find MVThread. I’ve tried searching your blog, as well as the internet, but can’t seem to find it.

]]>
By: Victor Laskin http://vitiy.info/stackblur-algorithm-multi-threaded-blur-for-cpp/#comment-8818 Tue, 06 May 2014 10:06:15 +0000 http://vitiy.info/?p=130#comment-8818 In reply to Royi.

I dont know about matlab implementation, but you can probably look into JS version as it expected to have more obvious code (http://www.quasimondo.com/StackBlurForCanvas/StackBlurDemo.html).

]]>
By: Royi http://vitiy.info/stackblur-algorithm-multi-threaded-blur-for-cpp/#comment-8794 Tue, 06 May 2014 07:19:02 +0000 http://vitiy.info/?p=130#comment-8794 Hi,
Is there a MATLAB implementation?
Or maybe Pseudo Code / C Cdoe with no optimization just to understand the method?

Thank You.

]]>
By: Victor Laskin http://vitiy.info/stackblur-algorithm-multi-threaded-blur-for-cpp/#comment-4473 Sat, 21 Dec 2013 17:04:56 +0000 http://vitiy.info/?p=130#comment-4473 In reply to Elam.

Do you have trouble to perform blur fast enough or to get/show image? Blur part speed should depend on device resolution in your case. May be its even good idea to use every second pixel in case of full hd device resolution. For normal case algorithm described here should work under 200ms – how fast are your results? May be slow part is on java side when you provide image data to blur.

]]>
By: Elam http://vitiy.info/stackblur-algorithm-multi-threaded-blur-for-cpp/#comment-4472 Sat, 21 Dec 2013 15:26:27 +0000 http://vitiy.info/?p=130#comment-4472 Hi! I’m doing it on Android, our demands has some differents. First, I must get a shot of screen, and then blur it, then show it immediately. I am write it with C program, and build with NDK. But I got some trouble, I must done with it lower than 200ms, but I did’t found a way to do it. So, can you give me some help or suggest? Thank you very much! Sorry for my english.

]]>