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 to share photos of your group with the world? 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 5682 - 5713 of 9969   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5682
Hi, I'm missing a function that returns the number of the control with the focus. (The opposite to setCtlFocus - like a "getCtlFocus"). How can we get this...
simpelfilter
Offline Send Email
Aug 2, 2006
7:25 am
5683
Hi Ralph, There is only a setCtlFocus() function and no getCtlFocus() one. If you explain why you need it, I may come up with another solution. Harry ... From:...
Harald Heim
haraldheim2001
Offline Send Email
Aug 2, 2006
11:30 am
5684
Hi Harry, it would be an easy way to switch the color of the text of a control to (i.e.) red if this control has the focus. Now I switch the color only by...
simpelfilter
Offline Send Email
Aug 2, 2006
12:33 pm
5685
Hi Ralph, I see. I don't think it will be a problem to add a getCtlFocus() function. I hope Alex and I will be able to do a new FM release by the end of the ...
Harald Heim
haraldheim2001
Offline Send Email
Aug 2, 2006
3:08 pm
5686
Hi, I believe the Windows API has events for handling the focus, something like "enter" and "exit", perhaps it might be nice to add "FME_ENTER" and "FME_EXIT"...
Martijn van der Lee
mwvdlee
Offline Send Email
Aug 2, 2006
7:40 pm
5687
/* Hello to all, I want to make a plugin where goes incorporate a code of "high pass" Do I make this way it, but how do I make to add a variable of Radius? ...
manolowarr
Offline Send Email
Aug 4, 2006
10:36 am
5688
Hola Manolo, te contesto en ingles: Basically you can do it the same way as you would implement a blur filter with variable radius. A blur filter is in fact a...
Jamie London
jamesbondzw
Offline Send Email
Aug 4, 2006
6:01 pm
5689
Jamie London, I don't understand him well, you could to show me an example code thank you and greetings Jamie London, Yo no le comprendo bien, podía usted...
manolowarr
Offline Send Email
Aug 4, 2006
7:07 pm
5690
Manolo, What you seem to want to do, sharpening, is basically a two-step project: step 1: Learn how to implement a blur effect (browse the FMML mailing list ...
Martijn W. van der Lee
mwvdlee
Offline Send Email
Aug 4, 2006
8:24 pm
5691
Hola Martijn El problema es que yo no comprendo bien el ingles y los traductores son muy malo, pero si entiendo muy bien el lenguaje de código C y C++. No...
manolowarr
Offline Send Email
Aug 4, 2006
9:45 pm
5692
Hola Manolo, here you go. The code below is based on a modification of Tom Fiddaman's clever realization of a Gaussian blur filter. Although the code is a bit...
Jamie London
jamesbondzw
Offline Send Email
Aug 5, 2006
8:53 am
5693
Now if I understand A lot of thank you, thank you, thank you To subtract of the original píxel the gauss píxel pset(x,y,z, src(x,y,z) + 127 - (int)wn ); ...
manolowarr
Offline Send Email
Aug 5, 2006
12:14 pm
5695
Hola Manolo, thanks for sharing your plugin with us. It is amazing what you can achieve by combining the original image with its edges. I think you can speed...
Jamie London
jamesbondzw
Offline Send Email
Aug 9, 2006
9:48 pm
5696
Hy this is my first post here, i have a free copy of FM and i'm thinking to buy the full version, but i want be sure that i can use for my pourposes. For...
fotocomics
Offline Send Email
Aug 9, 2006
10:27 pm
5698
Hello, This is my code that I use for preview screen: setCtlPos(CTL_PREVIEW, 6, PixelsToVDBUs(10), W-PixelsToHDBUs(335), H-42); where W and H is filter window...
jzagaja@...
jack_zagaja
Offline Send Email
Aug 17, 2006
9:05 am
5699
Hi, In what handler are you using this code? Could you show the calculations of W and H? Ideally; could you post the minimal code that demonstrates this...
Martijn van der Lee
mwvdlee
Offline Send Email
Aug 17, 2006
9:36 am
5700
Thanks Martin, I think I see the fault - wrong handler: OnCtl(n):{if (e == FME_SIZE){ const int W = getDialogWidth(); const int H = getDialogHeight(); ...
jzagaja@...
jack_zagaja
Offline Send Email
Aug 17, 2006
3:26 pm
5701
Hi, Why does this function return 1? In javaScript Math.pow(2,4) it is equal to 16 = 2x2x2x2 Greetings %ffp OnFilterStart:{ int n; n= pow(2,4); Info("n = %d",...
Manolo
manolowarr
Offline Send Email
Aug 17, 2006
9:56 pm
5702
pow() requires floating point arguments. Try the following: n = (int) pow(2., 4.); Info("n = %d", n); Also be sure to check the manual if you find results...
Martijn van der Lee
mwvdlee
Offline Send Email
Aug 18, 2006
6:34 am
5703
Hi, Did anyone from you test Alienskin's new Blowup plugin? Your impression? Since they started producing photo plugins they increased their prizes and offer...
Harald Heim
haraldheim2001
Offline Send Email
Aug 19, 2006
3:22 pm
5704
Hi, On first sight, the quality looks very good. The examples are, obviously, handpicked. Only the vector image is compared to bicubic, sharp contrasts and...
Martijn van der Lee
mwvdlee
Offline Send Email
Aug 19, 2006
3:42 pm
5705
thank you very much , Greetings...
Manolo
manolowarr
Offline Send Email
Aug 19, 2006
5:17 pm
5706
Hello, I have created a code to make blur gaussian, but I have the problem that doesn't work me with high value. This code this based one in the idea of...
Manolo
manolowarr
Offline Send Email
Aug 19, 2006
5:50 pm
5707
Hi, well I played a bit with a copy of Blow out. I must say that the results are good. In very particular pictures, made a lot of thin lines I see obviously ...
extrabigmehdi
Offline Send Email
Aug 20, 2006
4:37 am
5708
Manolo, it is not a good idea to compute binomial coefficients by evaluating the numerator and denominator separately, since the individual factorials will...
Jamie London
jamesbondzw
Offline Send Email
Aug 20, 2006
7:09 am
5709
I'm stuck with an error which I seem to recall someone else had a while back but no solution was made available. ... "X86 Emit Error OnCtl code buffer...
Richard Rosenman
richard_rose...
Offline Send Email
Aug 21, 2006
1:46 am
5710
Hi Manolo, while Jamie's algorithm will accelerate the processing, the real ... and ... They add up to huge numbers, too large for int-variables to hold. I ...
jazzscriveyn
Offline Send Email
Aug 21, 2006
9:33 am
5711
Hi Richard, do you use triggerEvent for making "pseudo function" ? http://www.filtermeister.com/wiki/index.php?page=triggerEvent This could reduce size. Also...
extrabigmehdi
Offline Send Email
Aug 21, 2006
10:53 am
5712
Hi, I took a look at the demos from Alienskin: 1. They mark the scalings by meaning of the obtained surface and not as commonly done by the linear increase....
Paul Simoens
paul.simoens
Offline Send Email
Aug 21, 2006
12:01 pm
5713
Hi Mehdi; Yes, I'm using several trigger event to re-use code. However, there is some code which could be moved to the FET section as you suggested. Any chance...
Richard Rosenman
richard_rose...
Offline Send Email
Aug 21, 2006
10:42 pm
Messages 5682 - 5713 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