Hi,
I cannot find any syntax or demo code for using the quickFill() command.
FM says to me that it has to have 9 arguments.
Does someone know more?
Thanks...
Hi, quickFill() is meant for filling the put/get cells with values from one of the image buffer or from an array. It is meant to be used in connection with ...
Hi Ralph, The SDK allows access to image profiles, but FilterMeister does not support it yet. This feature only works with Photoshop CS and higher. Harry ... ...
hi , I never paid attention to the quickFill function, but it looks interesting. One thing the most penalizing performances unde FM is the time to access...
Hi, FilterMeister is basically a high level language, so it is more like Basic than like C in this respect. It tries to be foolproof so a lot of check are ...
Ok, here we go: int quickFill(int x, int y, int z, int buffer, int radius, int xstart, int ystart, int xend, int yend) - x, y z: image coordinates and color...
That's a good alternative to filling the cells by a loop and spares some code in my next filter. And I assume that it is not slower than a loop, isn't it?...
Hi Ralph, If it would be possible to program the same things faster or just as fast in FM itself, I would not have created quickFill() and would not have named...
Hi Harry,
yes, in actual fact I nether doubt in this ;-).
But I tried to figure out the function and I have some notes:
I found that the maximum possible...
Hi Ralph, Yes, you are right. A radius of 15 is the maximum. A radius of 16 would require (16*2+1) * (16*2+1) = 1089 cells, but there are only 1024 cells. It...
Hi Jim, int fm_quickMedian(int low, int high) - low: lowest put/get cell that contains values, usually zero - high: highest put/get cell that contains values,...
I have received a complaint, that my plugins crash Photoshop CS3 (on Vista). Anybody else know anything about this situation? I have neither CS3 nor Vista...
Hi, I haven't received such a complaint for my own plugins and I have no problem running FM or FM plugins in Photoshop CS3 under XP. Maybe it is just a special...
Am 07.02.2007 um 00:49 schrieb Harald Heim:
>
> It doesn't matter in which direction the put/get cells are filled > for the median calculation, so I did not...
The previous message #6125 was NOT posted by myself, and the attachment probably contains some sort of virus. Please do NOT attempt to open that message or...
I get this error message: Function parameters not yet implemented from this program: %ffp ctl(7): "Radius ", range=(1,8), val=1, page=1 ForEveryTile: { int...
... Hi Alex, I believe your computer is infected by a trojan or stuff like that. There's an instructive article concerning "zombie computer" at wikipedia: ...
Hi, You need to delete the two function definition at the start of the ForEveryTile handler. FM doesn't support defining your own functions yet, besides you...
Thanks, Harry, for getting the code in working order. I'm glad to have such a nice Median filter. That would be great to have it added to the code library. Jim...
Hi Jim, I just noticed ony small mistake in the code int high=(ctl(7)*2+1)*(ctl(7)*2+1); should be replaced with int high=(ctl(7)*2+1)*(ctl(7)*2+1) - 1; It...
... It is not necessary so. For quite some time now, viruses are able to extract email from address books and even browser caches. All it takes from Yahoo for...
Hi Harry, I made the correction. Thank you. I'm adding it to a filter I had that adjusts the sharpness before it applied the median effect. I tried posterizing...
Hi Harry ( & all), I wanted to test how quickFill function is fast. So I remplaced the code of quickFill in the calculation of median, with my own code for...
Hi, Yes, your code is faster than quickFill, because it uses loop optimizations while quickFill works on a pixel per pixel basis. The problem is that...
Hi Ralph, You made several mistakes: 1. You need to divide the value from getCtlCoord() with scaleFactor. Otherwise you get the preview coordinates relative to...