Skip to content

Commit

Permalink
[style-fix] minor - CemrgAtriaClipper binary ball radius set to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
alonsoJASL committed Oct 20, 2021
1 parent 3e72b14 commit 2b050da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CemrgApp/Modules/CemrgAppModule/src/CemrgAtriaClipper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ void CemrgAtriaClipper::ClipVeinsImage(std::vector<int> pickedSeedLabels, mitk::

//Image Dilation
BallType binaryBall;
binaryBall.SetRadius(manuals[i] == 1 ? 1 : 1.5); // manuals[i] == 1 ? 1 : 1.5
binaryBall.SetRadius(1); // before, radius=(manuals[i] == 1 ? 1 : 1.5) change to a larger value if problems arise
binaryBall.CreateStructuringElement();
DilationFilterType::Pointer dilationFilter = DilationFilterType::New();
dilationFilter->SetInput(cutItkImage);
Expand Down

0 comments on commit 2b050da

Please sign in to comment.