Skip to content

Commit 2b050da

Browse files
committed
[style-fix] minor - CemrgAtriaClipper binary ball radius set to 1
1 parent 3e72b14 commit 2b050da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CemrgApp/Modules/CemrgAppModule/src/CemrgAtriaClipper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ void CemrgAtriaClipper::ClipVeinsImage(std::vector<int> pickedSeedLabels, mitk::
439439

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

0 commit comments

Comments
 (0)