top of page

Unique eye sketch

Yakov lanczner, Merav Joseph

Updated: Mar 14, 2021

The goal of the project is to create an eye sketch using a dynamic programing algorithm

Code:

The algorithm can be found Here. O

ur Main code can be found Here.


Workspace:

PYTHON


Algorithm description:

Writing a blog is a great way to position yourself as an authority in your field and captivate your readers’ attention. Do you want to improve your site’s SEO ranking? Consider topics that focus on relevant keywords and relate back to your website or business. You can also add hashtags (#vacation #dream #summer) throughout your posts to reach more people, and help visitors search for relevant content.


Dynamic programming:

Our input (source image):

1. Given an image of an eye, convert its data to a 3d representation: X and Y axis are the coordinates and Z is the color data.

2. Then the eye image is recursively divided into sectors to find the optimal eye partition. each sector is rotated parallel to X axis.


3. Each sector is then recursively divided to find optimal number of segments and their position.


4. For each sector a plane that minimizes the distances of the (X,Y,Z) points from the plane is computed.


5. A dynamic programing algorithm is used in order to calculate the optimal partition to k segments.


6. In order to find the ideal number of partitions for the whole eye and for each sector (slice) a binary search is used to find the “elbow” point, the point that is farthest from the line that connects (1,f(1)) with (n,f(n))=(n,0), where (1,f(1)) is the sum of distances from the ideal plane of partition to 1 segment, and (n,f(n)) is the sum of distances from the ideal plane of partition to n segments.


Our output:


Improvements to the original algorithm:

  1. The code of the algorithm “the Shortest path with exactly k edges in a directed and weighted graph”, was modified to python and combined into the project’s code.

  2. Graph data set was created to support the 3d representation.

  3. The different stages explained in “Algorithm description” section were all implemented, including: 2d and 3d implementation, modified binary search, combining algebraic regression, mathematical calculations(plane, distance from a point to a line, “finding the elbow point”).


Yakov lanczner: yakovlan88@gmail.com Merav joseph: meravtyt@gmail.com




















Comentários


Asset 7@2x1.png

Computer Science Department

THE UNIVERSITY OF HAIFA

Asset 19@small.png

RBD
Robotics & Big Data Labs

  • LinkedIn
  • YouTube

2020

bottom of page