9

I'm a senior in college that hasn't done much image processing before (except for some basic image compression on smartphones). I'm starting a research project on machine learning next semester that would require some biomedical image processing. What's the best way to get up to speed with the basics of image processing in about two months? Or is this impractical?

It's my impression that once I'm good with the basics learning more from other resources would be easier.

rdasxy
  • 3,323
  • 7
  • 29
  • 41
  • 2
    `It's my impression that once I'm good with the basics learning more from other resources would be easier.` Well that's true for everything. – yannis Nov 10 '11 at 07:04
  • 2
    what sort of level is your maths at? – jk. Nov 10 '11 at 07:44
  • It's a pretty broad field. What are you most interested in? Anyways, google is your friend, here's one starting point that looks promising: http://www.archive.org/details/Lectures_on_Image_Processing . There's also MIT and Stanford lectures on signal and image processing. – Guy Sirton Nov 10 '11 at 08:00
  • @jk.I've had three levels of calculus, linear algebra, advanced probability theory and numerical analysis. – rdasxy Nov 10 '11 at 21:18
  • If I were you I would invest some time learning more about matrices – A.Rashad Nov 10 '11 at 11:09
  • If you can afford it, get a copy of [Digital Image Processing Using MATLAB](http://www.imageprocessingplace.com/) and [MATLAB](http://www.mathworks.com/products/matlab/) with [Image Processing Toolbox](http://www.mathworks.com/products/image/). They're horribly expensive but worth it. – Joonas Pulakka Nov 10 '11 at 07:50

5 Answers5

5

Books are good if you are already knowledgeable about something. But if you are just starting out, a real course is better. For the human brain, is easier to learn something from another person, rather than from an inanimate book.

Anyhow it is not always possible to follow a course at your local college, or maybe you want to have the best possible education, without having to pay for the most expensive tuition.

This is why I love to follow courses online. I prefer american colleges, but Lecture 1 Introduction to Digital Image Processing seems good too.

Luckily, there are online courses for almost everything in the IT, and for most of the scientific courses: You don't need to be at MIT to get an MIT-grade education, without paying a cent. This is Great way to improve your skills and thus your market value.

Take your time to have a look here:

Jonas
  • 14,867
  • 9
  • 69
  • 102
Mascarpone
  • 765
  • 1
  • 6
  • 8
4

I don't think you can learn much in 2 months. Image processing is really broad field, and to get better in it you'll need at least several years.

Some of the very basics stuff you can do :

  • take a look into 2d filters (or better yet find a book describing 2d image filtering).
  • get octave and try to play with some filters. Try to process images on your own
  • join processing group, and follow sci.image.processing news group
  • try to play with opencv filters, although I think it is an advanced field

By the way, I hope your math is really good.

BЈовић
  • 13,981
  • 8
  • 61
  • 81
  • My math is decent. From the amount of mention this is getting, I assume this is really math heavy. – rdasxy Nov 10 '11 at 21:31
3

You cannot learn image processing in two months. Go take a class in a local university's EE department on digital signal processing. That will provide the needed mathematical background and will perhaps touch on image processing as well.

stackoverflowuser2010
  • 2,736
  • 2
  • 18
  • 14
1

If looking for the basics, I learned via the PBM/Netpbm programs. It is a rudimentary way to very clearly define an arbitrary-depth image (in ASCII format) and process not just with provided libraries and utilities, but also you can very easily process with your favorite program or shell.

I even used this during several projects at Uni doing remote sensing and calibrating these raster images. My code was not the fastest, but it did run correctly and programmed all in AWK ;) Point is, once you understand your data, you can do almost anything. Might be a good start there.

Jé Queue
  • 3,937
  • 2
  • 29
  • 37
1

I started out by actually making a program from scratch. No books, classes, or math. My math does't go far beyond basic algebra.

I ended up making an effective barcode reader that blows away the commercial trials I tested. Jump in and do it!!!

Lord Tydus
  • 1,429
  • 1
  • 10
  • 12