Changes between Version 6 and Version 7 of GSoC/2014/ImplementationOf3DRasterFlowLine


Ignore:
Timestamp:
Jun 27, 2014, 2:35:07 PM (10 years ago)
Author:
annakrat
Comment:

week 6

Legend:

Unmodified
Added
Removed
Modified
  • GSoC/2014/ImplementationOf3DRasterFlowLine

    v6 v7  
    113113
    114114Next, I will try to implement Runge-Kutta with adaptive step size.
     115
     116=== Week 6 ===
     117I 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
     119I 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.