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 5370 - 5399 of 9973   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5370
Hi, I don't have to say that Filtermeister is a great program, have I ? :-) I needed some time to track down a bug in the pset/pget functions. They don't work...
alois_zingl
Offline Send Email
Feb 1, 2006
9:29 am
5371
K&R doesn't defines the exact behaviour of the modulo operator but rather leaves it as machine dependant. I guess the basic idea of the behaviour with negative...
Martijn van der Lee
mwvdlee
Offline Send Email
Feb 1, 2006
11:48 am
5372
Hi, This is no bug with pset/pget. Some hosts like Photoshop let you read and write one pixel beyond the image borders, but others like PSP 8-10 don't allow...
Harald Heim
haraldheim2001
Offline Send Email
Feb 1, 2006
12:08 pm
5373
Hi, ... read and ... The programm doesn't access pixels outside the image. It only accesses pixels outside the current tile. And if it's not possible to access...
alois_zingl
Offline Send Email
Feb 1, 2006
5:48 pm
5374
Hi Alois, I think you mean by "outside the image", in fact "outside the preview". You know that the behavior of FM change when you set isTileable to true....
extrabigmehdi
Offline Send Email
Feb 1, 2006
8:47 pm
5375
Sorry for being persistent, is there a way to get rid of that flashing DOS box? Many thanks! Jamie ... like ... set...
Jamie London
jamesbondzw
Offline Send Email
Feb 2, 2006
8:05 am
5376
Hi Jamie, your question is not specific to FM, and thus could have been asked elsewhere. Anyway, since I was myself interested by the question, I 've performed...
Guessous Mehdi
extrabigmehdi
Offline Send Email
Feb 2, 2006
10:34 am
5377
Hi, Does someone know how the padding works, if a large image is split up in tiles? OnFilterStart: { isTileable=true; needPadding=1; return false; } As I...
alois_zingl
Offline Send Email
Feb 2, 2006
11:54 am
5378
Hi Jamie, ... I don't how to do get rid of the DOS box. But if you are working under Windows do it by scripting, Windows Host Script or Visual Basic Script. ...
alois_zingl
Offline Send Email
Feb 2, 2006
12:32 pm
5379
Hi alois, ... that's correct. To be more clear: if I set padding to 15 i.e needPadding=15; then I'll be able to access from pixels: for(y=y_start-15 ; y< y_end...
extrabigmehdi
Offline Send Email
Feb 2, 2006
12:55 pm
5380
Hi Alois, Sorry, I overlooked that you used pget and not src. The pget buffer isn't padded, because it is an output buffer, so it makes no sense to pad it. ...
Harald Heim
haraldheim2001
Offline Send Email
Feb 2, 2006
1:01 pm
5381
Hi Alois, You can see from my FocalBlade plugin that it works. There are certainly more people in this group who produced a plugin which processes images in ...
Harald Heim
haraldheim2001
Offline Send Email
Feb 2, 2006
1:03 pm
5382
Neither Windows Host Script nor Visual Basic Script are installed with every version of Windows. My advise is to simply stick with the C functionality that FM...
Martijn van der Lee
mwvdlee
Offline Send Email
Feb 2, 2006
1:12 pm
5383
... It most certainly is possible, you just need to know how much padding you need for the blur. I think he was referring to the problems I had with a blur and...
Martijn van der Lee
mwvdlee
Offline Send Email
Feb 2, 2006
1:39 pm
5384
Hi, ... images in ... My problem is that with isTileable enabled only the src function can be used. tget, tset and pget fail to work properly if a pixel...
alois_zingl
Offline Send Email
Feb 2, 2006
4:31 pm
5385
One word: MANUAL ! ... Sorry, that's possible... Maybe not for a newbie. ... Yahoo! Autos. Looking for a sweet ride? Get pricing, reviews, & more on new and...
yep me
pshoplifter
Offline Send Email
Feb 2, 2006
5:02 pm
5386
Hi alois, I don't know why you want absolutely to use pget, tget etc ... functions. If you want to retrieve precomputed datas between each tiles I recommend...
extrabigmehdi
Offline Send Email
Feb 2, 2006
5:28 pm
5387
Hi Mehdi, thank you for your detailed answer. The information provided on the experts-exchange page looks promising, I'll try those recipes and see if that...
Jamie London
jamesbondzw
Offline Send Email
Feb 2, 2006
9:20 pm
5388
Thanks Alois, but I don't want to have to rely on yet another environment (VB or the like). Funny though, your example of displaying a message window is just...
Jamie London
jamesbondzw
Offline Send Email
Feb 5, 2006
8:43 pm
5389
Thanks Martijn, you are right in saying that the best way to avoid the problem is to do everything within FM. Your examples are instructive, however the...
Jamie London
jamesbondzw
Offline Send Email
Feb 6, 2006
4:05 pm
5390
Hi, It seemed that some functions I need are simply not implemented. As I posted earlier, I thought that in the access of pget(x,y-1,z) is a bug in tile mode....
alois_zingl
Offline Send Email
Feb 8, 2006
7:04 am
5391
Hi Guys I'm a newbie to your group, and to the delights of programming in FF+. I've run into what is probably a daft error on my part. While I can cut, paste...
bzdarw
Offline Send Email
Feb 8, 2006
12:29 pm
5392
Hi, I've created a simple filter to increase colour saturation in a photo. I've tried to mimic what Photoshop lets you do (in Image > Adjustments ... ...
yahds21
Offline Send Email
Feb 9, 2006
11:11 am
5393
I recommend you to have a look at color matrix operations - this allows you to change several aspects of a color in one step: ...
Mario Klingemann
coma2mario
Offline Send Email
Feb 9, 2006
11:38 am
5394
The other option you could check out is color extrapolation: http://www.sgi.com/misc/grafica/interp/index.html Mario...
Mario Klingemann
coma2mario
Offline Send Email
Feb 9, 2006
11:49 am
5395
Hi, interpolating and extrapolating beetwen a source image and a desaturated version of it, is the most intuitive way to conceive a saturation algorithm. But...
extrabigmehdi
Offline Send Email
Feb 9, 2006
2:50 pm
5396
Hi Mehdi, Thanks for the reply. I've been using the wikipedia definitions for HSV and HSL. I picked HSV as apparently Photoshop uses it. As to whether to...
yahds21
Offline Send Email
Feb 10, 2006
12:07 am
5397
Hi ... This method is inaccurate. By checking only gray values, you introduce a discontinuous behavior on the way you modify saturation. Imagine that your...
extrabigmehdi
Offline Send Email
Feb 10, 2006
1:25 am
5398
Hi Mehdi, ... I understand your point about continuous colour. And indeed I do see some odd changes in colour at the moment. However, in the definition of the...
yahds21
Offline Send Email
Feb 10, 2006
3:16 am
5399
Hi yahds21, ... But that's what we want! We don't have to define a different processing for gray values and non gray values. We modify saturation with a...
extrabigmehdi
Offline Send Email
Feb 10, 2006
12:19 pm
Messages 5370 - 5399 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