Uses of Class
jhd.FloodFill.Offsets.PointDesc

  • Uses of Offsets.PointDesc in jhd.FloodFill

    Methods in jhd.FloodFill that return Offsets.PointDesc
    Modifier and Type Method Description
    static Offsets.PointDesc[] Offsets.get1dOffsets2D​(int width, int height)
    Get the absolute 1D offsets of pixels surrounding a 2D central pixel
    static Offsets.PointDesc[] Offsets.get1dOffsets2D​(int width, int height, double pixWidth, double pixHeight)
    Get the absolute 1D offsets and center-to-center distances of pixels surrounding a 2D central pixel, pixel units must be the same
    static Offsets.PointDesc[] Offsets.get1dOffsets3D​(int width, int height, int depth)
    Get the absolute 1D offsets of voxels surrounding a 3D central voxel
    static Offsets.PointDesc[] Offsets.get1dOffsets3D​(int width, int height, int depth, double pixWidth, double pixHeight, double pixDepth)
    Get the absolute 1D offsets and center-to-center distances of voxels surrounding a central voxel, voxel units must be the same
    static Offsets.PointDesc[] Offsets.getIndexOffsets2D()
    Get the index offsets of pixels surrounding a 2D central pixel, eg offset(-1,0) is to the left, if the central pixel is (27,32) the one to the left is(26,32)
    static Offsets.PointDesc[] Offsets.getIndexOffsets2D​(double pixWidth, double pixHeight)
    Get the index offsets and distance of pixels surrounding a central pixel, eg offset(-1,-1) is (left,up) , if the central pixel is (27,32) the one to the left,up is(26,31) and the distance is √ pixWidth2 + pixHeight2, voxel units must be the same.
    static Offsets.PointDesc[] Offsets.getIndexOffsets3D()
    Get the index offsets of voxels surrounding a central voxel, eg offset(-1,-1,-1) (left,up,forward), if the voxel pixel is (27,32,57) the one to the left,up,forward is(26,31,56)
    static Offsets.PointDesc[] Offsets.getIndexOffsets3D​(double pixWidth, double pixHeight, double pixDepth)
    Get the index offsets and distance of voxels surrounding a central voxel, eg offset(-1,-1,-1) (left,up,forward), if the voxel pixel is (27,32,57) the one to the left,up,forward is(26,31,56) and the distance is √ pixWidth2 + pixHeight2 + pixDepth2 , voxel units must be the same.
    Methods in jhd.FloodFill that return types with arguments of type Offsets.PointDesc
    Modifier and Type Method Description
    java.util.ArrayList<Offsets.PointDesc> GDT3D.getGeoPath2D​(java.lang.Object data, int width, int height, Offsets.PointDesc probePt)
    Finds the shortest path through a 2D GDT image between a probePoint and the GDT origin.
    java.util.ArrayList<Offsets.PointDesc> GDT3D.getGeoPath3D​(java.lang.Object[] data, int width, int height, int depth, Offsets.PointDesc probePt)
    Finds the shortest path through a 2D GDT image between a probePoint and the GDT origin.
    java.util.ArrayList<Offsets.PointDesc>[] GDT3D.getGeoPaths2D​(java.lang.Object data, int width, int height, java.util.ArrayList<Offsets.PointDesc> probePts)
    Finds the shortest path through a 2D GDT image between each probePoint and the GDT origin.
    java.util.ArrayList<Offsets.PointDesc>[] GDT3D.getGeoPaths3D​(java.lang.Object[] data, int width, int height, int depth, java.util.ArrayList<Offsets.PointDesc> probePts)
    Finds the shortest path through a 2D GDT image between each probePoint and the GDT origin.
    Methods in jhd.FloodFill with parameters of type Offsets.PointDesc
    Modifier and Type Method Description
    java.util.ArrayList<Offsets.PointDesc> GDT3D.getGeoPath2D​(java.lang.Object data, int width, int height, Offsets.PointDesc probePt)
    Finds the shortest path through a 2D GDT image between a probePoint and the GDT origin.
    java.util.ArrayList<Offsets.PointDesc> GDT3D.getGeoPath3D​(java.lang.Object[] data, int width, int height, int depth, Offsets.PointDesc probePt)
    Finds the shortest path through a 2D GDT image between a probePoint and the GDT origin.
    Method parameters in jhd.FloodFill with type arguments of type Offsets.PointDesc
    Modifier and Type Method Description
    java.util.ArrayList<Offsets.PointDesc>[] GDT3D.getGeoPaths2D​(java.lang.Object data, int width, int height, java.util.ArrayList<Offsets.PointDesc> probePts)
    Finds the shortest path through a 2D GDT image between each probePoint and the GDT origin.
    java.util.ArrayList<Offsets.PointDesc>[] GDT3D.getGeoPaths3D​(java.lang.Object[] data, int width, int height, int depth, java.util.ArrayList<Offsets.PointDesc> probePts)
    Finds the shortest path through a 2D GDT image between each probePoint and the GDT origin.
    int FloodFill.grayFloodFill3D​(java.lang.Object[] oImageArr, int imgWidth, int imgHeight, int imgDepth, int neighbors, double floodMin, double floodMax, double fillVal, java.util.List<Offsets.PointDesc> seeds)
    Flood fill 3D image voxel values between floodMin and floodMax with a fillVal