Jan. An old file of mine. Grab what you need. RON C %ffp //------------------------------------- // COLOR_SYSTEMIZER //------------------------------------- ...
Thanks Ron, for both suggestions. I still can't get it to work, though. Jan ... From: Ron C To: FMML@yahoogroups.com Sent: Friday, November 27, 2009 1:27 PM ...
Jan, Found this VB code with Google: Public Function Atan3(ByVal x As Double, ByVal y As Double) As Double ' This function was kindly provided by Blindwig of...
Jan, atan2(y, x) is atan(y/x) with both x and y input. I bet atan3 is a typo as it would have 3 parameter input. RON C Hi all, I am building a catalogue of...
Hi all, I am building a catalogue of colorspace conversions of the type: rgb->N, N->rgb. If you want to contribute with some I would be happy to incorporate...
Hi! I know that Filter Meister has predefault functions for transforming RGB values to Lab and back and RGB to LCH and back. Is there some kind of functions...
Thanks Bill, oddly it only happens in Photoshop, not PaintShopPro. Cheers Jan ... From: Bill MacBeth To: FMML@yahoogroups.com Sent: Saturday, November 21, 2009...
Jan, I've never seen this, but I suspect it is something subtle that you may have to isolate by simplifying the code until it can be tracked down, or you are ...
I'm, getting "Unknown error (-1) while trying to generate a preview image". I'm trying to set the preview to 100%. Anyone with any experience on this? Cheers ...
Alex, Bill: I had a response ready to send off to Bill when I read Alex's and Otis's post. I take it that this debate on tiling is really a more of a 'under...
... An algorithm that rotates an image 90 degrees is an obvious example in which you want the definition of the input tile to be different from the output...
Re: not using tiles because present computers have enough to allow processing the whole image: Memory is/are like highways, the more there is the more is used....
... SDK. I don't want to argue/debate the merits of your opinion, but I do want to discuss the way FM works and see what you or others think. Any program is...
... I don't want to argue/debate the merits of your opinion, but I do want to discuss the way FM works and see what you or others think. Any program is going...
Hi Bill, I hope I gain enough experience to understand the advantages of filterRecord. In the meantime, good luck with your cause! thanks for the info Alun To:...
Alun, I didn't mean that response for you specifically, so accept my apologies for the confusion. FM is a development environment for Photoshop-compatible...
Hi Bill, Sorry, as a newby you've just blinded me with science. I've got alot to learn yet. thanks Alun. To: FMML@yahoogroups.com From: bmacbeth@... Date:...
Hi Martin, Thanks for your code and info on the median pair. This explains why I was getting blocky artifacts. Your code runs great and has no padding issues....
Again - another reason to do true tiling in the manner of the Photoshop SDK. The padding dimension can be specified, and PS does the padding. A full...
Hi Jan, I found allocArrayPad in the wiki after you pointed me in the right direction. I didn't use it in the end. But its handy to know for future reference....
Alun, the quickFill/quickMedian pair uses pixels from the neigborhood of the current pixel (x,y). The way you nested the loops in your original code results in...
Hi Alun If you try this, you will find your borders become white if (!allocArrayPad(setArray1,X,Y,Z,2, medianRadius)) ErrorOk ("Array allocation failed"); ...
Hi Kohan, I took onboard what you said originally, and use this code... OnFilterStart:{setZoom(1); return false;} ...which I disable when testing preview...
Hi Jan, I discovered freeArray when searching the wiki to gain an understanding of the code you posted yesterday. I tried to apply it, because I thought the...
... I only took a quick look at the code and haven't played with quickMedian myself, so I'm sorry if I've sent you off on a wild goose chase! It could be...
Hi Alun, thanks, I am happy to help. Actually as a matter of good form you need to add onFilterEnd: { freeArray(1); return false; } And you could incoporate...
Hi Jan, Thankyou for you effort! It does work better now. Adjusting the slider after rescaling/zooming the preview renders the preview correctly. Grabbing and...
Hi Alun, I think this works better. Cheers Jan %ffp ctl(0): "Median Radius ", range=(1,3), val=3 ForEveryTile: { int tmp =0; int medianRadius = ctl(0); int...