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...
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:...
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...
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 ...
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"...
/* 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? ...
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, 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...
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 ...
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...
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...
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 ); ...
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...
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...
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...
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...
Thanks Martin, I think I see the fault - wrong handler: OnCtl(n):{if (e == FME_SIZE){ const int W = getDialogWidth(); const int H = getDialogHeight(); ...
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",...
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...
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...
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...
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...
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 ...
Manolo, it is not a good idea to compute binomial coefficients by evaluating the numerator and denominator separately, since the individual factorials will...
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...
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 ...
Hi Richard, do you use triggerEvent for making "pseudo function" ? http://www.filtermeister.com/wiki/index.php?page=triggerEvent This could reduce size. Also...
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....
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...