~charon-developers/hekate/trunk

« back to all changes in this revision

Viewing changes to src/DepthEdgesRFWriter.cpp

  • Committer: Moritz Becker
  • Date: 2014-06-20 11:10:27 UTC
  • mfrom: (657.1.2 hekate)
  • Revision ID: moritz.becker@pallas-ludens.com-20140620111027-ci18kkpwuydsd6gb
gabor

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
 
147
147
                sout << "Write hdf5 file to " << filename << "\n\tgroup: " << groupname ;
148
148
                sout << "\n\tFeature count: " << this->depthEdgeModel().randomForests[i].feature_count() ;
149
 
                sout << "\n\tClass count: " << this->depthEdgeModel().randomForests[i].class_count() << std::endl; ;
 
149
                sout << "\n\tClass count: " << this->depthEdgeModel().randomForests[i].class_count() << std::endl;
 
150
 
 
151
                sout << "filename = " << filename << std::endl;
 
152
                sout << "groupname = " << groupname << std::endl;
150
153
                
151
154
                // Save random forest as hdf 5                  
152
 
                vigra::rf_export_HDF5(  this->depthEdgeModel().randomForests[i],
153
 
                                                                filename, 
154
 
                                                                groupname);
 
155
                vigra::rf_export_HDF5(this->depthEdgeModel().randomForests[i],
 
156
                        filename,
 
157
                        groupname);
155
158
                        
156
159
        }
157
160