Changes between Version 6 and Version 7 of GSoC/2014/ImplementationOf3DRasterFlowLine
- Timestamp:
- 06/27/14 14:35:07 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GSoC/2014/ImplementationOf3DRasterFlowLine
v6 v7 113 113 114 114 Next, I will try to implement Runge-Kutta with adaptive step size. 115 116 === Week 6 === 117 I implemented Runge-Kutta with adaptive step size based on the VTK implementation and it produces satisfactory results. It is now used as default integration method. 118 119 I started to work on on-the-fly gradient computation. Gradient is computed with central differencing scheme of second order approximation (also on edges). I tested it against numpy implementation, the newest version is required because the older implementations are less precise on the edges. Then I tried to incorporate the computation of the gradient in r3.flow and it still needs some improvements and optimization. Tests show that the resulting flowlines differ slightly from flowlines computed when I use precomputed gradient. So I will look into that.