| 215 | } |
| 216 | |
| 217 | static itk::PolyLineParametricPath<3>::Pointer CreatePathFromPoints(BaseGeometry* imageGeometry, const Point3D& startPoint, const Point3D& endPoint) |
| 218 | { |
| 219 | itk::PolyLineParametricPath<3>::Pointer path = itk::PolyLineParametricPath<3>::New(); |
| 220 | |
| 221 | AddPointToPath(imageGeometry, startPoint, path); |
| 222 | AddPointToPath(imageGeometry, endPoint, path); |
| 223 | |
| 224 | return path; |
| 225 | } |
| 226 | |
| 227 | IntensityProfile::Pointer mitk::ComputeIntensityProfile(Image::Pointer image, PlanarFigure::Pointer planarFigure) |
| 228 | { |
no test coverage detected