MCPcopy Create free account
hub / github.com/MITK/MITK / GetTimeSteps

Method GetTimeSteps

Modules/ROI/src/mitkROI.cpp:144–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142}
143
144std::vector<mitk::TimeStepType> mitk::ROI::Element::GetTimeSteps() const
145{
146 std::vector<TimeStepType> result;
147 result.reserve(m_Min.size());
148
149 for (const auto& [t, min] : m_Min)
150 {
151 (void)min; // Prevent unused variable error in older compilers
152
153 if (m_Max.count(t) != 0)
154 result.push_back(t);
155 }
156
157 return result;
158}
159
160mitk::Point3D mitk::ROI::Element::GetMin(TimeStepType t) const
161{

Callers 15

ConvertImageTimeStepsFunction · 0.80
doDumpingFunction · 0.80
ReadVoxelMethod · 0.80
DoCalculateStatisticsMethod · 0.80
DoParameterFitMethod · 0.80
ReadMethod · 0.80
ExtractCESTT1TimeMethod · 0.80
ExtractCESTOffsetMethod · 0.80

Calls 2

countMethod · 0.80
sizeMethod · 0.45