Package sc.fiji.snt.tracing.cost


package sc.fiji.snt.tracing.cost
Cost function implementations for classes implementing SearchInterface
  • Class
    Description
    Interface for cost function implementations used by SearchInterface
    Cost function that computes path cost based on the difference between voxel values and a specified range, useful for tracing along intensity gradients.
     
    A cost function inspired by an A* search implementation in the Janelia Workstation, where the cost of moving to a new voxel is given by the complementary error function 1 - erf(z), where
    Uses the reciprocal of voxel intensity, rescaled to the interval (double precision) 255 * (intensity - min) / (max - min) to compute the cost of moving to a neighbor node.