Ignore:
Timestamp:
03/05/07 11:07:44 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.h

    r2183 r2187  
    5757 
    5858        /** Load the input scene.  
    59         @param filename file to load 
    60         @return true on success 
     59                @param filename file to load 
     60                @return true on success 
    6161        */ 
    6262        virtual bool LoadScene(const string filename); 
    6363 
    6464        /** Export all preprocessed data in a XML format understandable by the 
    65         PreprocessingInterface of the GtpVisibilityPreprocessor Module.  
    66         The file can be compressed depending on the environement settings. 
    67         @return true on successful export 
     65                PreprocessingInterface of the GtpVisibilityPreprocessor Module.  
     66                The file can be compressed depending on the environement settings. 
     67                @return true on successful export 
    6868        */ 
    6969        virtual bool ExportPreprocessedData(const string filename); 
    7070 
    7171        /** Build the KdTree of currently loaded occluders/occludees/viewcells. The construction 
    72         is driven by the environment settings, which also sais which of the three types of 
    73         entities should be used to drive the heuristical construction (only occluders by default) 
     72                is driven by the environment settings, which also sais which of the three types of 
     73                entities should be used to drive the heuristical construction (only occluders by default) 
    7474        */ 
    7575        virtual bool BuildKdTree(); 
    7676 
    7777        /** Compute visibility method. This method has to be reimplemented by the actual 
    78         Preprocessor implementation (e.g. SamplingPreprocessor, ExactPreprocessor, 
    79         GlobalSamplingpreprocessor) 
     78                Preprocessor implementation (e.g. SamplingPreprocessor, ExactPreprocessor, 
     79                GlobalSamplingpreprocessor) 
    8080        */ 
    8181        virtual bool ComputeVisibility() = 0; 
    8282 
    8383        /** Post Process the computed visibility. By default applys the visibility filter 
    84         (if specified in the environment and export the preprocessed data */ 
     84                (if specified in the environment and export the preprocessed data  
     85                */ 
    8586        virtual bool PostProcessVisibility(); 
    8687 
    8788        /** View cells are either loaded or prepared for generation, according to the chosen environment 
    88         object. Important evironment options are, e.g, the view cell type. 
    89         Should be done after scene loading (i.e., some options are based on scene type). 
     89                object. Important evironment options are, e.g, the view cell type. 
     90                Should be done after scene loading (i.e., some options are based on scene type). 
    9091        */ 
    9192        bool PrepareViewCells(); 
     
    111112        @returns true if samples were loaded successfully 
    112113        */ 
    113         bool LoadSamples(VssRayContainer &samples, 
    114                 ObjectContainer &objects) const; 
     114        bool LoadSamples(VssRayContainer &samples, ObjectContainer &objects) const; 
    115115 
    116116        /** Exports samples to file. 
    117         @returns true if samples were written successfully 
     117                @returns true if samples were written successfully 
    118118        */ 
    119119        bool ExportSamples(const VssRayContainer &samples) const; 
     
    158158                                                        ); 
    159159 
    160         /** Compute pixel error of the current PVS solution by sampling given number of viewpoints . 
     160        /** Compute pixel error of the current PVS solution by sampling given number of viewpoints. 
    161161        */ 
    162162        virtual void ComputeRenderError(); 
     
    223223        bool mUseGlRenderer; 
    224224        bool mUseGlDebugger; 
    225   bool mUseHwGlobalLines; 
     225         
     226        bool mUseHwGlobalLines; 
    226227        bool mLoadViewCells; 
    227228 
     
    261262        RayCaster *mRayCaster; 
    262263 
     264 
    263265protected: 
    264266 
     
    288290        vector<FaceParentInfo> mFaceParents; 
    289291 
    290  
    291    
    292292        /// if box around view space should be used 
    293293        bool mUseViewSpaceBox; 
Note: See TracChangeset for help on using the changeset viewer.