Very few systematic construction methods for creating multi-resolution analysis filters are present
in the existing literature. In part this is because non- orthogonal filters have not yet received
the amount of study that orthogonal filters have.
A new multi-resolution filter construction technique is presented that involves choosing an unusual
inner product. This technique is novel in that it allows the user to start from an existing
subdivision scheme and generate filters with various properties depending on choices made at construction
time. In addition, an existing multi-resolution analysis filter and its inner product can be altered
by applying this construction technique to alter the given inner product and generate a new system.
The newly constructed filters satisfy several construction criteria and are tested inside a
multi-resolution curve editor to verify that they are suitable for curve editing applications.
Facilitator: Kerry Mahoney, Co-operative Education & Career Services
Are you interested in a career in academia or research? If so,
this
workshop on preparing a cover letter and curriculum vitae (C.V.) is
for
you! Its never too soon to start thinking about your career plans.
And a
crucial part of your planning should include learning how to represent
your experience and your skills in writing. In this workshop,
you will
learn how to analyze job advertisements and prepare a cover letter.
Please pre-register for this workshop by sending an email to
trace@watserv1 by Wednesday, April 14, 1999, or by sending the form
below
to TRACE, MC 4055. Enrolment is limited, so sign up early!
If you have
any questions, please contact TRACE at ext. 3132
Jianchao Han
Dept. Computer Science, University of Waterloo
1. The standard PAC learning model
2. The Classification Noise Model (based on the Statistical Query learning model)
3. A framework for labeled and unlabeled training examples
- Friday, April 16, 1999
Arunprasad P. Marathe, graduate student, Dept. Comp.
Sci., Univ. of Waterloo, will
speak on ``Query
Processing Techniques for Arrays''.
TIME: 2:00-3:00 p.m.
ROOM: DC 1331
ABSTRACT
Arrays are an appropriate data model
for images,
gridded output from computational models, and
other
types of data. In this talk,
I shall describe an
approach to array query processing.
Queries are
expressed in the Array Manipulation Language (AML), a
logical algebra that is easily extended
with user-
defined functions to support a wide variety of array
operations. For example, compression, filtering,
and
algebraic operations on images can be described.
AML
expressions involving such operations can be treated
declaratively and subjected to
useful rewrite
optimizations. I shall describe a plan generator that
produces efficient iterator-based plans from rewritten
AML expressions.
This is joint work with my advisor, Dr. Ken Salem.
A
paper based on ideas in this talk shall appear in the
SIGMOD 99 conference.
- Monday, April 19, 1999
Koji Ueda, graduate student, Dept. Comp. Sci., Univ.
Waterloo, will speak on ``Efficient
Query Result
Retrieval in a Distributed Object Environment.''
TIME: 1:00-2:00 p.m.
ROOM: DC 1304
ABSTRACT
Most database server products offer an iterator-based
programming interface like the following:
Result result = database.query( condition );
while( result.more() )
{
doSomething( result.get() );
}
This interface is easy to use for
the client-side
programmers and has been quite popular up to this day.
Usually, database products provide a stub library with
which client programs should be linked. This portion of
the program deals with the communication details with
the database server and performs caching for the client
application. However, the situation is different in a
distributed object environment such as
Java RMI or
CORBA. Every function call is not a local procedure
call to the client stub, but essentially
a remote
method call to the server object, which can lead to a
bad query performance. This is a
serious problem,
especially for applications such
as geographic
information systems since their result sets are usually
huge and real-time user interaction is required.
We contrive two ideas to avoid this bottleneck, without
changing the same programming interface.
1. Dynamically download a caching program
to the
client side using Java RMI.
2. Insert caching codes into ORB
using the CORBA
object wrapper mechanism.
In this thesis, each solution is examined under various
conditions from diverse points of view: the
time to
retrieve a result set, the size of transferred data,
and the amount of required programming. The multiple
retrieval interface (i.e., the interface with Data[]
getn(int n) instead of Data get()) is also evaluated
for comparison.