~ubuntu-branches/ubuntu/trusty/hugin/trusty-proposed

« back to all changes in this revision

Viewing changes to src/hugin1/icpfind/icpfind.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2011-01-06 14:28:24 UTC
  • mfrom: (1.1.9 upstream) (0.1.21 experimental)
  • Revision ID: james.westby@ubuntu.com-20110106142824-zn9lxylg5z44dynn
* Drop Cyril Brulebois from Uploaders. Thank you very much for your work.
* Bump package version. (rc3 was re-released as 2010.4.0).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- c-basic-offset: 4 -*-
 
2
 
 
3
/** @file icpclean.cpp
 
4
 *
 
5
 *  @brief program to heuristic detection of control points in panoramas
 
6
 *  
 
7
 *  @author Thomas Modes
 
8
 *
 
9
 */
 
10
 
 
11
#include "panoinc_WX.h"
 
12
#include <wx/cmdline.h>
 
13
#include "CPDetectorConfig.h"
 
14
#include <set>
 
15
 
 
16
class iCPApp : public wxAppConsole
 
17
{
 
18
    /** the main procedure of iCPApp */
 
19
    virtual int OnRun();
 
20
    /** set the parameters for the command line parser */
 
21
    virtual void OnInitCmdLine(wxCmdLineParser &parser);
 
22
    /** processes the command line parameters */
 
23
    virtual bool OnCmdLineParsed(wxCmdLineParser &parser);
 
24
private:
 
25
    /** read the CPDetectorConfig from file/registry */
 
26
    void ReadDetectorConfig();
 
27
 
 
28
    long m_setting;
 
29
    long m_matches;
 
30
    wxString m_input;
 
31
    wxString m_output;
 
32
    CPDetectorSetting m_cpsetting;
 
33
    PT::Panorama pano;
 
34
};
 
35
 
 
36
DECLARE_APP(iCPApp)