- Timestamp:
- Aug 20, 2014, 1:04:08 PM (11 years ago)
- Children:
- 0d5ca7
- Parents:
- 0d4daf
- git-author:
- Frederik Heber <heber@…> (05/30/14 13:06:25)
- git-committer:
- Frederik Heber <heber@…> (08/20/14 13:04:08)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Exporters/SphericalPointDistribution.cpp
r0d4daf r90426a 39 39 #include "CodePatterns/Assert.hpp" 40 40 #include "CodePatterns/IteratorAdaptors.hpp" 41 #include "CodePatterns/Log.hpp" 41 42 #include "CodePatterns/toString.hpp" 42 43 … … 102 103 103 104 if (_Matching.size() > 1) { 104 // convert matching into two vectors to calculate distance among another105 LOG(3, "INFO: Matching is " << _Matching); 105 106 106 107 // calculate all pair-wise distances … … 123 124 errors.second += gap*gap; 124 125 } 125 } 126 } else 127 ELOG(2, "calculateErrorOfMatching() - Given matching is empty."); 128 LOG(3, "INFO: Resulting errors for matching (L1, L2): " 129 << errors.first << "," << errors.second << "."); 126 130 127 131 return errors; … … 136 140 IndexArray_t indices(_matchingindices.begin(), _matchingindices.end()); 137 141 std::sort(indices.begin(), indices.end()); 142 LOG(4, "DEBUG: sorted matching is " << indices); 138 143 IndexArray_t::const_iterator valueiter = indices.begin(); 139 144 SphericalPointDistribution::Polygon_t::const_iterator pointiter = … … 146 151 remainingpoints.push_back(*pointiter); 147 152 } 153 LOG(4, "DEBUG: remaining indices are " << remainingpoints); 148 154 149 155 return remainingpoints; … … 173 179 "rotatePolygon() - not exactly "+toString(3)+" angles given."); 174 180 rotation.setRotation(_angles[0] * M_PI/180., _angles[1] * M_PI/180., _angles[2] * M_PI/180.); 181 LOG(4, "DEBUG: Rotation matrix is " << rotation); 175 182 176 183 // apply rotation angles … … 205 212 unsigned int _matchingsize) 206 213 { 214 LOG(4, "DEBUG: Recursing with current matching " << _matching 215 << ", remaining indices " << _indices 216 << ", and sought size " << _matchingsize); 207 217 //!> threshold for L1 error below which matching is immediately acceptable 208 218 const double L1THRESHOLD = 1e-2; 209 219 if (!_MCS.foundflag) { 220 LOG(3, "INFO: Current matching has size " << _matching.size() << " of " << _matchingsize); 210 221 if (_matching.size() < _matchingsize) { 211 222 // go through all indices … … 214 225 // add index to matching 215 226 _matching.push_back(*iter); 227 LOG(4, "DEBUG: Adding " << *iter << " to matching."); 216 228 // remove index but keep iterator to position (is the next to erase element) 217 229 IndexList_t::iterator backupiter = _indices.erase(iter); … … 227 239 _MCS.foundflag = true; 228 240 } else { 241 LOG(3, "INFO: Found matching " << _matching); 229 242 // calculate errors 230 243 std::pair<double, double> errors = calculateErrorOfMatching( … … 251 264 VectorArray_t remainingold(_polygon.begin(), _polygon.end()); 252 265 VectorArray_t remainingnew(_newpolygon.begin(), _newpolygon.end()); 266 LOG(3, "INFO: Matching old polygon " << _polygon 267 << " with new polygon " << _newpolygon); 253 268 254 269 if (_polygon.size() > 0) { … … 272 287 recurseMatchings(MCS, matching, indices, matchingsize); 273 288 } 289 LOG(3, "INFO: Best matching is " << MCS.bestmatching); 274 290 275 291 // determine rotation angles to align the two point distributions with … … 288 304 oldCenter *= 1./(double)i; 289 305 newCenter *= 1./(double)i; 306 LOG(3, "INFO: oldCenter is " << oldCenter << ", newCenter is " << newCenter); 290 307 291 308 Vector direction(0.,0.,0.); … … 304 321 } 305 322 } 323 LOG(3, "INFO: (x,y,z) angles are" << angles); 306 324 const Line RotationAxis(zeroVec, newCenter); 307 325 const double RotationAngle = 308 326 newCenter.Angle(remainingold[0]) 309 327 - newCenter.Angle(remainingnew[*MCS.bestmatching.begin()]); 328 LOG(3, "INFO: Rotate around self is " << RotationAngle 329 << " around axis " << RotationAxis); 310 330 311 331 // rotate _newpolygon 312 332 SphericalPointDistribution::Polygon_t rotated_newpolygon = 313 333 rotatePolygon(_newpolygon, angles, RotationAxis, RotationAngle); 334 LOG(3, "INFO: Rotated new polygon is " << rotated_newpolygon); 314 335 315 336 // remove all points in matching and return remaining ones … … 320 341 321 342 322
Note:
See TracChangeset
for help on using the changeset viewer.