back to SVP project


Report on SVP( Strategic Vectorization Project )

Director: Bob Futrelle
Code: Dan Crispell
Report: Mingyan Shao

      

        The idea of SVP is: beginning with JPEG file, apply moment analysis on the pixel intensity information, then create QuadricFit objects, group these QuadricFit objects together and fit the groups into line segments. Two possible operations may be done to the line segments, they can be chained together if they could merge into a slow curve, or they can be extended to find intersections. The result image contains a set of lines, some are chained, andsome are connected to an intersection.

Steps:


Details:

 

 

 

 

 

, QuadricFit, InterpolatedFunction, etc.

 

 

 

 

Now, we know slope and intercept, we need to calculate two endpoints. To do this, first we calculate the unit x and y of the direction, which is easy
since we know slope already. Next, find the minimal and maximal projected distances(on x if closer to horizontal, on y if closer to vertical) by going through the quadric group. Then, two endpoints can be calculated by these projected distances, slope and intercept.


Based on a QuadricGroup, we get a line model of endpoints, width, slope, intercept, and related statistical information.  




back to SVP project