Ignore:
Timestamp:
08/10/06 09:23:38 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1184 r1194  
    391391  CollectLeafPvs(); 
    392392 
     393  bool ExportBinTree(const string &filename); 
     394  bool LoadBinTree(const string &filename); 
     395 
    393396protected: 
    394397 
     
    553556        */ 
    554557        void ProcessMultipleRefs(KdLeaf *leaf) const; 
     558 
     559        void ExportBinLeaf(ofstream &stream, KdLeaf *leaf); 
     560        void ExportBinInterior(ofstream &stream, KdInterior *interior); 
     561void ImportBinLeaf(ifstream &stream, KdLeaf *leaf); 
     562        void ImportBinInterior(ifstream &stream, KdInterior *interior); 
    555563 
    556564  int mTermMaxNodes; 
Note: See TracChangeset for help on using the changeset viewer.