Guest User

Untitled

a guest
Feb 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. IteratorRegionType itmFix (this->GetInput(0), this->GetInput(0)->GetLargestPossibleRegion());
  2. IteratorRegionType itmReg (m_matcher->GetOutput(), m_matcher->GetOutput()->GetLargestPossibleRegion());
  3.  
  4. itmFix.GoToBegin(); itmReg.GoToBegin();
  5. while(!itmFix.IsAtEnd()){
  6. itmFix.Set(itmFix.Get()/sqrt(eF));
  7. itmReg.Set(itmReg.Get()/sqrt(eR));
  8. ++itmFix; ++itmReg;
  9. }
Add Comment
Please, Sign In to add comment