Search the web
Sign In
New User? Sign Up
FMML · FilterMeister plug-in discussion group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6108 - 6138 of 9969   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6108
Hi, if I try to use requestRect() for displaying a small 1:1-preview of the image in an ownerdraw, some errors occur. Please try the code below. If...
simpelfilter
Offline Send Email
Feb 6, 2007
12:04 pm
6109
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...
simpelfilter
Offline Send Email
Feb 6, 2007
12:05 pm
6110
Hi, is it possible to get the color profile (ICC profile) of the current image into FM? How? Thanks, Ralph...
simpelfilter
Offline Send Email
Feb 6, 2007
12:05 pm
6111
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 ...
Harald Heim
haraldheim2001
Offline Send Email
Feb 6, 2007
12:35 pm
6112
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 ... ...
Harald Heim
haraldheim2001
Offline Send Email
Feb 6, 2007
12:35 pm
6113
Am 06.02.2007 um 13:34 schrieb Harald Heim: > Still interested in a small > description of the parameters? > Yes, I am! Thanks, Ralph...
simpelfilter
Offline Send Email
Feb 6, 2007
12:40 pm
6114
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...
extrabigmehdi
Offline Send Email
Feb 6, 2007
1:24 pm
6115
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 ...
Harald Heim
haraldheim2001
Offline Send Email
Feb 6, 2007
3:13 pm
6116
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...
Harald Heim
haraldheim2001
Offline Send Email
Feb 6, 2007
3:43 pm
6117
Hi Harry, You mentioned quickMedian(). Can you give us the syntax of that. Searching theWiki comes up empty. Thanks, Jim...
Jim Clatfelter
jimclatfelter
Offline Send Email
Feb 6, 2007
7:30 pm
6118
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?...
simpelfilter
Offline Send Email
Feb 6, 2007
8:43 pm
6119
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...
Harald Heim
haraldheim2001
Offline Send Email
Feb 6, 2007
9:42 pm
6120
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...
simpelfilter
Offline Send Email
Feb 6, 2007
11:15 pm
6121
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...
Harald Heim
haraldheim2001
Offline Send Email
Feb 6, 2007
11:50 pm
6122
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,...
Harald Heim
haraldheim2001
Offline Send Email
Feb 6, 2007
11:51 pm
6123
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...
Jan Esmann
very_secret_dk
Offline Send Email
Feb 7, 2007
2:07 pm
6124
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...
Harald Heim
haraldheim2001
Offline Send Email
Feb 7, 2007
3:24 pm
6126
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...
simpelfilter
Offline Send Email
Feb 7, 2007
6:01 pm
6127
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...
Alex Hunter
afhsys
Offline Send Email
Feb 7, 2007
10:27 pm
6128
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...
Jim Clatfelter
jimclatfelter
Offline Send Email
Feb 7, 2007
10:50 pm
6129
... 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: ...
extrabigmehdi
Offline Send Email
Feb 7, 2007
11:35 pm
6130
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...
Harald Heim
haraldheim2001
Offline Send Email
Feb 8, 2007
12:10 am
6131
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...
Jim Clatfelter
jimclatfelter
Offline Send Email
Feb 8, 2007
4:00 am
6132
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...
Harald Heim
haraldheim2001
Offline Send Email
Feb 8, 2007
11:54 am
6133
... 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...
Ilya Razmanov
ilyich_the_toad
Offline Send Email
Feb 8, 2007
1:08 pm
6134
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...
Jim Clatfelter
jimclatfelter
Offline Send Email
Feb 8, 2007
3:51 pm
6135
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...
Guessous Mehdi
extrabigmehdi
Offline Send Email
Feb 9, 2007
1:08 am
6136
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...
Harald Heim
haraldheim2001
Offline Send Email
Feb 9, 2007
10:41 am
6137
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...
Harald Heim
haraldheim2001
Offline Send Email
Feb 9, 2007
3:03 pm
6138
Sorry, small typo in my previous email. I wanted to say: "I did write requestRect() for using it in the ForEveryTile handler ..." Harry...
Harald Heim
haraldheim2001
Offline Send Email
Feb 9, 2007
3:19 pm
Messages 6108 - 6138 of 9969   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help