Re: [Q] Extending Python for computer vision [LONG]

Quentin Stafford-Fraser (fraser@europarc.xerox.com)
24 Feb 1995 14:20:27 GMT

grendel@fen.arc.nasa.gov (Raymond E. Suorsa) wrote:

>
> What other constructs are used to pass possibly large parameter lists?
>

Objects. You might like to think about something which might look
like:

# create a thresholding filter with particular
# characteristics

thresher = thresholdfilter(0.5, 0.7)
thresher.setmin(0.6)

# apply it to some images

image1.filter(thresher)
image2.filter(thresher)

or some such. Not sure how this would fit into khoros. There are
variations like:

thresher.apply(image1)

which could easily do the same thing underneath.

Quentin