Skip to content

Commit d545078

Browse files
committed
Use improved version of ITKGrowCut
1 parent 6fb6007 commit d545078

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Superbuild/ITKExternal.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ if(BUILD_MOSAIC_TOOLS)
9090
)
9191
endif()
9292

93-
SET(itk_GIT_TAG "3a63e79d17addbc8903270f363fac6c5b89cdf53")
93+
SET(itk_GIT_TAG "1b16b76599a5eda9f8e9665d9a3f15a87634ce92")
9494

9595
# If CMake ever allows overriding the checkout command or adding flags,
9696
# git checkout -q will silence message about detached head (harmless).

src/Application/Tools/Algorithm/GrowCutter.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,12 @@ void GrowCutter::execute()
158158
{
159159
this->fast_grow_cut_->SetInput( data_image_ );
160160
this->fast_grow_cut_->SetSeedImage( background_image_ );
161-
this->fast_grow_cut_->SetInitializationFlag( this->initialization_flag_ );
162161
this->fast_grow_cut_->GenerateData();
163162
this->initialization_flag_ = true;
164163
}
165164
else
166165
{
167166
this->fast_grow_cut_->SetSeedImage( background_image_ );
168-
this->fast_grow_cut_->SetInitializationFlag( this->initialization_flag_ );
169167
this->fast_grow_cut_->GenerateData();
170168
}
171169
this->output_image_ = this->fast_grow_cut_->GetOutput();

0 commit comments

Comments
 (0)