Any help will be greatly appreciated. Please e-mail me.
Lionel
My major advice is to get your systems engineering done properly. There
are a number of tasks/subsystems which, at least in the beginning, must
be considered separately:
1 Image acquisition. 1.1 Start off by reading one image -- into a file.
1.2 Make sure you can read that image into an array in a C program -- or
wherever you propose to do the processing.
1.3. Acquire a sequence of images -- either moving camera or moving
object.
2. Moving object detection. 2.1 Compare two successive images etc. See
the literature. 2.2 Try something over a sequence of images.
3. Object tracking -- camera following object. You need to set up a
control problem which has some objective, e.g. centroid of object at
centre of image. Define an 'error', e.g. vector displacement of object
from centre. Devise a 'control-law': error -> camera control
Okay, the comments above are short on detail; but, try solving the whole
problem at once and you're lost. Maybe, if you're lucky, right at the
end, you'll be able to integrate your subsystems. If it's for an exam.,
the systems approach is also important -- you want marks for the
individual parts, even if you never get a complete system working.
One point. If you don't already have an software image processing
system, even the first steps will be quite demanding. For example,
trying to debug an object detection algorithm will be horrendously
difficuly unless you have good interactive feedback -- not unlike
operating blindfold. Therefore, see if they have any interactive image
processing software available, e.g. Matlab -- or Khoros, cheap by
universities CHEST licence.
If your professors mean the latter to be part of the project, then be
methodical, e.g. build a suite of programs:
- read from camera and write to some standard file type (one that you
can read into an array);
- various processes, e.g. edge detection, difference (between two
files),
- display.
If you need to develop such software, you may get some hints in:
Jonathan Campbell and Fionn Murtagh
Signal and Image Processing in Java.
Presented at IMVIP '97, University of Ulster, Magee College,
Derry, 10-13 September 1997.
available from: http://www.infm.ulst.ac.uk/research/preprints.html
although that software is in Java, and, generally, a good deal more
ambitious than what you require.
Good luck.
Jon Campbell
--
Jonathan G Campbell Univ. Ulster Magee College Derry BT48 7JL N. Ireland
+44 1504 375367 JG.Ca...@ulst.ac.uk http://www.infm.ulst.ac.uk/~jgc/
Sorry. I got carried away.
K C L Yong <ELA9...@shef.ac.uk> wrote in article
Hope this helps.