source: tags/release-1.6.1/src/Outputs/CasaAnnotationWriter.hh @ 1441

Last change on this file since 1441 was 1126, checked in by MatthewWhiting, 12 years ago

Enabling the output of CASA region files. These include a box (acting as a region), plus annotation lines and text in the same manner as the other annotation files. Annotations are currently not supported by casaviewer (even the new v4.0.0!!!), but the region boxes will get picked up.

File size: 3.4 KB
Line 
1// -----------------------------------------------------------------------
2// CasaAnnotationWriter.hh: Class for writing results to CASA annotation files.
3// -----------------------------------------------------------------------
4// Copyright (C) 2006, Matthew Whiting, ATNF
5//
6// This program is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2 of the License, or (at your
9// option) any later version.
10//
11// Duchamp is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14// for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with Duchamp; if not, write to the Free Software Foundation,
18// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
19//
20// Correspondence concerning Duchamp may be directed to:
21//    Internet email: Matthew.Whiting [at] atnf.csiro.au
22//    Postal address: Dr. Matthew Whiting
23//                    Australia Telescope National Facility, CSIRO
24//                    PO Box 76
25//                    Epping NSW 1710
26//                    AUSTRALIA
27// -----------------------------------------------------------------------
28#ifndef DUCHAMP_CASA_ANNOTATION_WRITER_H_
29#define DUCHAMP_CASA_ANNOTATION_WRITER_H_
30#include <duchamp/Outputs/AnnotationWriter.hh>
31#include <duchamp/Outputs/CatalogueWriter.hh>
32#include <duchamp/Outputs/FileCatalogueWriter.hh>
33#include <duchamp/Detection/detection.hh>
34#include <ios>
35#include <iostream>
36#include <fstream>
37#include <string>
38
39namespace duchamp {
40
41  class CasaAnnotationWriter : public AnnotationWriter
42  {
43  public:
44    /// @brief Default constructor
45    CasaAnnotationWriter();
46    /// @brief Constructor with given filename
47    CasaAnnotationWriter(std::string name);
48    /// @brief Copy constructor
49    CasaAnnotationWriter(const CasaAnnotationWriter& other);
50    /// @brief Copy operator
51    CasaAnnotationWriter& operator= (const CasaAnnotationWriter& other);
52    /// @brief Default destructor
53    virtual ~CasaAnnotationWriter(){};
54
55    /// @brief Reimplement writeHeader to ensure the first line is correct.
56    void writeHeader();
57
58    /// @brief Write the global properties for the file (colour, WCS info, ...)
59    void writeTableHeader();
60
61    /// @brief Reimplement writeEntry to write the object's bounding box as a region prior to the annotation
62    void writeEntry(Detection *object);
63
64    std::string spatialUnits(){return itsSpatialUnits;};
65    void setSpatialUnits(std::string units){itsSpatialUnits=units;};
66
67    /// @brief Annotate with a text string
68    void text(double x, double y, std::string text);
69    /// @brief Annotate with a single line
70    void line(double x1, double x2, double y1, double y2);
71    /// @brief Annotate with a circle
72    void circle(double x, double y, double r);
73    /// @brief Annotate with a box
74    void box(double x1, double x2, double y1, double y2, std::string label="");
75   /// @brief Annotate with an ellipse
76    void ellipse(double x, double y, double r1, double r2, double angle);
77    /// @brief Annotate with a series of lines connecting points
78    void joinTheDots(std::vector<double> x, std::vector<double> y);
79
80  protected:
81    std::string itsSpatialUnits;
82
83  };
84
85}
86
87#endif
88
Note: See TracBrowser for help on using the repository browser.