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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 2831 - 2860 of 9973   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2831
Hi, Thanks for your interesting results. However, I'm a bit skeptical about the results. I ran your code on my computer (Pentium 2.4 GHz) and here are my...
Harald Heim
haraldheim2001
Offline Send Email
Sep 2, 2004
12:34 pm
2832
Hi, There are some more problems with the testcase as given in that they do not do a fair comparison. This is an incomplete list of problems I found; The lower...
Martijn van der Lee
mwvdlee
Offline Send Email
Sep 2, 2004
1:19 pm
2833
Hi Shifty, I guess it is the same problem that Steve reported some time ago. The titlebar switches from XP style to classic style. As I don't use a titlebar in...
Harald Heim
haraldheim2001
Offline Send Email
Sep 7, 2004
11:43 am
2834
Hi, I just discovered the color dode and burn modes in the blend() function are incorrect. To be precise, the math I did a few years ago to "reverse engineer"...
Martijn W. van der Lee
mwvdlee
Offline Send Email
Sep 8, 2004
2:04 pm
2835
The formulas for Dodge and Burn are: Burn : f(a,b) = 1 - (1 - a) / b Dodge : f(a,b) = a / (1 - b) I only found out about the blend function couple of weeks...
Shifty Geezer
ungleblunk
Offline Send Email
Sep 8, 2004
3:04 pm
2836
Hi all :) Is there a way to put a few numbers (filter parameters) on the clipboard? Right now I can save them in a .ini file, but putting them on the clipboard...
pshoplifter
Offline Send Email
Sep 11, 2004
9:34 pm
2837
Hi, I'll see that I add a function later for pasting the content of an array onto the clipboard. I already a putArrayString() function that will lets you fill...
Harald Heim
haraldheim2001
Offline Send Email
Sep 11, 2004
10:10 pm
2838
Cool ! let me know when you've added this functionality :) Harald Heim <harry@...> wrote:Hi, I'll see that I add a function later for pasting the...
yep me
pshoplifter
Offline Send Email
Sep 12, 2004
12:14 pm
2839
Hi, This little problem cost me a few hours to figure out; the srcp() and pgetp() functions, which extract entire pixels (all channels) from the image in one...
Martijn W. van der Lee
mwvdlee
Offline Send Email
Sep 13, 2004
10:02 am
2840
Hi Martijn, In the case of srcp() that problem should only occur if you have set isTileable to true, because in that case you can only access the pixels that ...
Harald Heim
haraldheim2001
Offline Send Email
Sep 13, 2004
12:04 pm
2841
Harald, This little piece of code shows the problem; %ffp ForEveryTile: { for (y = 0; y < Y; ++y) { for (x = 0; x < X; ++x) { psetp(x, y, srcp(x, y)); } } ...
Martijn van der Lee
mwvdlee
Offline Send Email
Sep 13, 2004
1:06 pm
2842
Hi Martijn, The problem is caused by psetp(). Sorry, seems I didn't add any code that clips the coordinates. I'll fix that. However, I don't see any sense in...
Harald Heim
haraldheim2001
Offline Send Email
Sep 13, 2004
1:26 pm
2843
well , i 'm also thinking of a way to save whole array beetween invokation of the filter ... i mean , when the user move certain sliders or interact with the...
extrabigmehdi
Offline Send Email
Sep 18, 2004
6:54 pm
2844
Your wish has nothing to do with clipboard it seems (any temporary file should do). My use for it is to let a user paste the settings of the plugin to a...
yep me
pshoplifter
Offline Send Email
Sep 19, 2004
10:18 pm
2845
How can I determine when the mouse *leaves* the preview area? At the moment I've a plugin where I want the original source to show when the mouse is over the...
Shifty Geezer
ungleblunk
Offline Send Email
Sep 20, 2004
9:06 am
2846
... There's already a few templates on the Wiki (look on the front page, under Documentation style templates... at the bottom of each page is text that you can...
Kohan Ikin
syneryder
Offline Send Email
Sep 20, 2004
9:53 am
2847
... Doh! I looked through those but for some reason never found the Function template. Man, I don't half make things difficult for myself!! Shifty Geezer ...
Shifty Geezer
ungleblunk
Offline Send Email
Sep 20, 2004
9:59 am
2848
... LOL nevermind. Always takes me a while to find them again too when I'm editing the Wiki (which is probably why I have a copy of the template in my web...
Kohan Ikin
syneryder
Offline Send Email
Sep 20, 2004
10:13 am
2849
For those of you who like Crimson as an alternate editor for FilterMeister, version 3.70 is now out. This versions includes drag 'n drop, which removes the...
Bill MacBeth
macbethbill
Offline Send Email
Sep 23, 2004
2:39 am
2850
I get an "invalid CGL" error since I tried to save my filter parameters as doubles instead of integers, I must have done something silly, but didn't figure it...
pshoplifter
Offline Send Email
Sep 25, 2004
2:52 pm
2851
The value returned by fopen() is always an *integer* handle, regardless of the format of the data you are storing in the file. So change "double ParFile" back...
Alex Hunter
afhsys
Offline Send Email
Sep 25, 2004
7:42 pm
2852
Thanks very much, I knew it had to be something simple :) There is another remaining problem however (isn't there always? ;) Parameters z1 to z9 are treated...
pshoplifter
Offline Send Email
Sep 25, 2004
9:20 pm
2853
In addition to previous post: it seems to be the fact that z1 and z9 are first and last in the list of parameters to be written to the file that somehow causes...
pshoplifter
Offline Send Email
Sep 26, 2004
12:40 pm
2854
Ah yes, this is probably related to a bug that was noted quite some time ago: The FM compiler generates incorrect code if the parameter list in a function...
Alex Hunter
afhsys
Offline Send Email
Sep 26, 2004
1:06 pm
2855
Thanks Alex, that worked. Reading in the parameters however, (three sampled colors) does not work. There's no error message, and I tested that it does go...
pshoplifter
Offline Send Email
Sep 26, 2004
3:26 pm
2856
Short answer: Use the format specifier %lf (not %f) when scanning a double value with one of the scanf family of functions. (That's a lower case letter 'l'...
Alex Hunter
afhsys
Offline Send Email
Sep 27, 2004
10:50 am
2857
Hi everyone, after lurking for quite a while on this list finally I have a problem which I thought to be real simple, but it turns out that it's quite hard to...
Mario Klingemann
coma2mario
Offline Send Email
Sep 30, 2004
1:42 pm
2858
Hi Mario, Well, I consider the Brightness/Contrast feature of Photoshop and other image applications one of the worst methods to to adjust contrast and ...
Harald Heim
haraldheim2001
Offline Send Email
Oct 1, 2004
11:45 am
2859
I absolutely agree with you - the contrast slider is complete crap and I never use it - but unfortunately the design guide of one world's biggest companies...
Mario Klingemann
coma2mario
Offline Send Email
Oct 1, 2004
11:56 am
2860
Hi, After just having released my latest plug-in; UnPlugged-X, I'm now working on adding some functionality to my Halftone plug-in. One of the features I want...
Martijn W. van der Lee
mwvdlee
Offline Send Email
Oct 8, 2004
6:45 pm
Messages 2831 - 2860 of 9973   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