Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ MultiphaseDenseFiniteDifferenceImageFilter<TInputImage, TFeatureImage, TOutputIm

// Find the index of the target image where this Level Set
// should be pasted.
OutputIndexType start = output->TransformPhysicalPointToIndex(origin);
const OutputIndexType start = output->TransformPhysicalPointToIndex(origin);

OutputRegionType region;
region.SetSize(size);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1353,7 +1353,7 @@ MultiphaseSparseFiniteDifferenceImageFilter<TInputImage, TFeatureImage, TOutputI
ImageRegionIterator<InputImageType> inIt(this->m_LevelSet[fId], this->m_LevelSet[fId]->GetRequestedRegion());

// In the context of the global coordinates
OutputIndexType start = output->TransformPhysicalPointToIndex(origin);
const OutputIndexType start = output->TransformPhysicalPointToIndex(origin);

// Defining sub-region in the global coordinates
OutputRegionType region;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ScalarChanAndVeseDenseLevelSetImageFilter<TInputImage, TFeatureImage, TOutputIma
InputPointType origin = input->GetOrigin();

// In the context of the global coordinates
FeatureIndexType start = this->GetInput()->TransformPhysicalPointToIndex(origin);
const FeatureIndexType start = this->GetInput()->TransformPhysicalPointToIndex(origin);

// Defining roi region
FeatureRegionType region;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ScalarChanAndVeseSparseLevelSetImageFilter<TInputImage, TFeatureImage, TOutputIm
InputPointType origin = input->GetOrigin();

// In the context of the global coordinates
FeatureIndexType start = this->GetInput()->TransformPhysicalPointToIndex(origin);
const FeatureIndexType start = this->GetInput()->TransformPhysicalPointToIndex(origin);

// Defining roi region
FeatureRegionType region;
Expand Down