Class QuadricFitter

java.lang.Object
  |
  +--QuadricFitter

public class QuadricFitter
extends java.lang.Object

This class is performs principal component analysis on a region of the image and produces QuadricFit objects.


Constructor Summary
QuadricFitter(int[][] _pixels)
          create a QuadricFitter object capable of performing PCA on any point in the specified image.
 
Method Summary
 QuadricFit getQuadricFit(DPoint center)
          perform PCA about the specified point and return a QuadricFit object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QuadricFitter

public QuadricFitter(int[][] _pixels)
create a QuadricFitter object capable of performing PCA on any point in the specified image.

Method Detail

getQuadricFit

public QuadricFit getQuadricFit(DPoint center)
perform PCA about the specified point and return a QuadricFit object. Note the size of the region for which the PCA is performed on depends on the QUADRIC_BOX_SIZE value in the SvpParameters class.