|
General Information
- The laboratory sessions will build on the material covered in the class, and aim to solidify your understanding of concepts through hands-on experimentation. You will see and believe for yourself that image processing is fun and one can produce useful results. The sessions will involve solving the assigned problems using MATLAB. You will hand in a report on the assignment worked out during the session and afterwards. The reports will include the results- e.g., images, observations, and answers to specific questions- obtained, and the MATLAB programs written for that purpose.
| List of Assignments: Assignment 1 : Playing
with Images |
| MATLAB Background
You already had a basic tutorial on MATLAB. In this lab, in addition to your basic MATLAB knowledge, you will be using some functions from MATLAB's image processing toolbox for accessing, displaying, and saving images. Assume that you want to access a gray level image named eight.tif (it comes with MATLAB image processing toolbox), type
Finally to save an image matrix I after you change its entries, e.g., under the name new.tif, type
In MATLAB, I is of type UINT8 (an integer between 0-255), to manipulate the image content other than through straightforward value settings, you need to convert the image to double precision to do this type
|