I can't get the preview to redraw when I change a radio-button setting. If I modify one of my OWNERDRAWS the preview is redrawn with the changes, but not when...
Hi all, Anyone know a quick way to process matrices without using FM's matrix (cnv) functions which don't go large enough? I'm trying to implement a gaussian...
No replies to my earlier radio-button query of trying to get the preview to update when the radio-button is changed. Does that mean this is impossible? Shifty...
... It's possible, I've just been playing with the Life Waves source code included with the latest version of FilterMeister, and it does what you want. All...
For anyone having problems with compiler crashes on Windows XP, I may have found a workaround - but it will cost you about $129, and require an extra Windows...
I just remembered passing by a WinXP feature once a while ago. Until I saw this post I was reminded of it again. It's the WinXP compatibility mode, allowing...
Thanks for the great idea Martijn! But unfortunately that isn't working for me. I tried using PSP7 and experimenting with the compatibility settings, but my...
Hi, Did anyone have luck with FilterMeister using the Compatibility Mode of XP? I recently released ColorWasher 2.0 and experienced this problem under Windows...
Hi, I was able to reproduce the crash with FM. Then I tried to reproduce it with the FM debug version and there was no crash. Then I tried to reproduce the ...
... You're on to something here, Harry. I tried deleting all the other 8bf files I had in the directory I was saving into, then Made the plugin and it worked....
Perhaps it has to do with the way Win2K (on which WinXP is largely based) handles long filenames. In my plug-ins I only use 8.3 filenames so that (combined...
My relatively small plugins have compiled okay on Win2000 overwriting existing plugins, though I haven't done a great deal of compiling, compiling from...
Hi, ... I had the crashes in Photoshop and Plugin Commander, so I don't think it is application-specific. ... My Harry's Filters 3.0 is about 60 K large, but...
Hi Shifty, They will become available with the next FM release. Alex plans to work on the resizing stuff this weekend as discussed some time ago on this list. ...
Somewhere I have a simple code (about as complex as the blur tutorials) that implements a recursive gaussian - about as fast as you can get if you need a real...
I'd be very pleased to see it, both for it's guassian blur solution and as a learning experience! I implemented a guassian blur using a two pass X then Y ...
Hi, Sorry for not responding sooner. I had a similar problem with a combobBox control. You can get it to update the preview each time it is set (essentially...
Shifty, Did you take into account that the filters are symmetric. So the convolution is simpler. n is the number of coefficients of the Gaussian. for(i = 0; i...
Hi Tom, If you apply the box blur from the tutorial two times, almost get a blur that is very similar to Gaussian. It is not identical, but you only see the ...
Here's a link to the code: http://www.sd3.info/pf828/fm/recursiveGauss4b-clean.ffp It's not well documented, but I've included links in the code to a research...
Thanks - the double box blur is a helpful suggestion; sometimes I get too purist. The recursive filter is fairly general; I've actually been pondering writing...
Thanks for the link Tom; I'll check it out later. Incidentally, why is Gaussian Blur the most popular? I always thought it was a creation of placing a gauss in...
Don't know why gaussian is so popular. It has some nice properties but I don't think there's any fundamental reason to prefer it. Its x-y separability may...