Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
chebCtrl = lsst.afw.math.Model2DControl.makeControl('CHEBYSHEV', moreConfigs)
chebyshevModel2D = lsst.afw.math.Model2D.fit(x, y, z, bbox, chebCtrl)
chebyshevModel2D.fillImage(im)



interpCtrl = lsst.afw.math.Model2DControl.makeControl('INTERPOLATE', moreConfigs)
interpModel2D = lsst.afw.math.Model2D.fit(x, y, z, bbox, interpCtrl)
interpModel2D.fillImage(im)
 
 

...

Design

Prototype design that could would enable this type of interface:

Code Block
languagecpp
 

 

 

 

 

 

Questions

QuestionOutcome

Is this refactor a candidate for rewriting the class in python?

  • There has been talk of redrawing the boundary between python and C++.

 

...