Changeset 2613


Ignore:
Timestamp:
08/01/12 11:49:03 (12 years ago)
Author:
Takeshi Nakazato
Message:

New Development: Yes

JIRA Issue: Yes CAS-2825

Ready for Test: No

Interface Changes: Yes

What Interface Changed: added new python module sd.edgemarker

Test Programs: not available

Put in Release Notes: Yes

Module(s): Module Names change impacts.

Description: Describe your changes here...

New python module edgemarker is available. The edgemarker is a tool to
detect edge of observed area and mark data near edge as OFF. It can be
used to calibrate OTF data without explicit OFF scan.


Location:
trunk
Files:
11 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/CMakeLists.txt

    r2587 r2613  
    3939     ${PYTHONDIR}/selector.py
    4040     ${PYTHONDIR}/simplelinefinder.py
     41     ${PYTHONDIR}/edgemarker.py
    4142     ${PYTHONDIR}/svninfo.txt
    4243     ${PYTHONDIR}/utils.py  )
  • trunk/python/__init__.py

    r2593 r2613  
    5353from opacity import model as opacity_model
    5454from asapgrid import asapgrid, asapgrid2
     55from edgemarker import edgemarker
    5556#from plotter2 import plotter2
    5657from _asap import srctype
  • trunk/src/CMakeLists.txt

    r2587 r2613  
    6666     ${SRCDIR}/STGrid.cpp
    6767     ${SRCDIR}/STIdxIter.cpp
     68     ${SRCDIR}/EdgeMarker.cpp
     69     ${SRCDIR}/EdgeDetector.cpp
     70     ${SRCDIR}/RasterEdgeDetector.cpp
     71     ${SRCDIR}/GenericEdgeDetector.cpp
    6872     ${SRCDIR}/Templates.cpp )
    6973
     
    8993     ${SRCDIR}/python_STGrid.cpp
    9094     ${SRCDIR}/python_Iterator.cpp
     95     ${SRCDIR}/python_EdgeMarker.cpp
    9196     ${SRCDIR}/python_asap.cpp )
    9297
  • trunk/src/python_asap.cpp

    r2587 r2613  
    8888  asap::python::python_STGrid();
    8989  asap::python::python_Iterator();
     90  asap::python::python_EdgeMarker();
    9091
    9192#ifndef HAVE_LIBPYRAP
  • trunk/src/python_asap.h

    r2587 r2613  
    5555    void python_STGrid();
    5656    void python_Iterator();
     57    void python_EdgeMarker();
    5758
    5859  } // python
Note: See TracChangeset for help on using the changeset viewer.