

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An assignment for a digital image processing course at the university of houston, focusing on the log-polar and cortical image transformations. Students are required to write programs to map input images to log-polar space and generate cortical images from retinal images.
Typology: Assignments
1 / 2
This page cannot be seen from the preview
Don't miss anything!


Write a program to map an input image to the log-polar space. For visualization, should be a discrete variable. You can achieve this by equating =radius and ignoring the log operation. sampling should be a free parameter. Test your code with =64. This should result in a polar image of size 128x64 for an input image of size 256x256.
captures the spatial mapping over a large portion of retina and cortex. C is the complex representation of cortical position, Z is for the retinal position, and a is a constant measured to be about 0.3 degrees if Z is measured in degrees and C in millimeters. This formula captures the shape of the flattened cortical surface for one visual hemi-field. If () are the polar retinal coordinates, and (R,TH) are the polar cortical coordinates with fovea at the origin, we can define mapping to be: R = log(+a) TH = Write a program to generate the retinal image given an input image. In addition, develop a simple user interface that allows for selection of a point in an image and performs the mapping to generate the cortical image.