Skip to content

Commit

Permalink
Merge pull request #20 from mapmanager/docs
Browse files Browse the repository at this point in the history
add index.md
  • Loading branch information
VasudhaJha authored Apr 16, 2023
2 parents d0ac721 + 46ec3f0 commit 80db698
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
11 changes: 11 additions & 0 deletions brightest_path_lib/docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Overview

The `brightest-path-lib` is a Python library which allows users to efficiently find the path with the maximum brightness in a 2D or 3D images. It uses the A\* Search and NBA\* Search algorithms, which are informed search algorithms that use heuristics to guide the search towards the most promising areas of the image.

## Capabilities

- The library provides easy-to-use functions that take the image data and start and end points as input and return the path with the maximum brightness as output.
- It supports both grayscale and color images and can handle images of arbitrary sizes.
- The library also provides support for users to know which points in the image are being considered for the brightest path in real-time so that they display them on the original image.

With its efficient implementation and intuitive API, this library is a valuable tool for anyone working with 2D or 3D images who needs to identify the path with the maximum brightness. We are using it for neuronal tracing to identify the path of a neuron or a set of neurons through a stack of images in our Napari Plugin.
3 changes: 1 addition & 2 deletions brightest_path_lib/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ markdown_extensions:
- pymdownx.superfences

nav:
- Overview: overview.md
- Overview: index.md
- Getting Started:
- installation.md
- quickstart_guide.md
- User Guide:
- user_manual.md
- API Reference:
- api_docs.md

0 comments on commit 80db698

Please sign in to comment.