Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bonej-org/BoneJ2
Plugins for bone image analysis
https://github.com/bonej-org/BoneJ2
fiji-plugin image-analysis image-processing imagej imagej-plugins java-8 maven-multimodule scientific-computing skeletal-biology travis-ci
Last synced: 3 months ago
JSON representation
Plugins for bone image analysis
- Host: GitHub
- URL: https://github.com/bonej-org/BoneJ2
- Owner: bonej-org
- License: bsd-2-clause
- Created: 2016-03-29T13:11:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-14T22:36:38.000Z (6 months ago)
- Last Synced: 2024-05-19T07:42:15.765Z (6 months ago)
- Topics: fiji-plugin, image-analysis, image-processing, imagej, imagej-plugins, java-8, maven-multimodule, scientific-computing, skeletal-biology, travis-ci
- Language: Java
- Homepage:
- Size: 4.18 MB
- Stars: 19
- Watchers: 7
- Forks: 12
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-biological-image-analysis - BoneJ - Collection of Fiji/ImageJ plug-ins for skeletal biology. (Other)
README
[![Build Status](https://github.com/bonej-org/BoneJ2/actions/workflows/build-main.yml/badge.svg)](https://github.com/bonej-org/BoneJ2/actions/workflows/build-main.yml)
# BoneJ
BoneJ is a collection of Fiji/ImageJ plug-ins for skeletal biology. It provides free, open source tools for trabecular geometry and whole bone shape analysis. This repository hosts the modern incarnation of BoneJ in development. If you use BoneJ in your work please cite:> Domander R, Felder AA, Doube M. 2021 BoneJ2 - refactoring established research software. Wellcome Open Res. **6**.
> doi:[10.12688/wellcomeopenres.16619.1](https://doi.org/10.12688/wellcomeopenres.16619.1)## Links
* [User guide](https://imagej.net/plugins/bonej)
* [ImageJ forum](https://forum.image.sc/tags/bonej)
* [Developer documentation](https://github.com/bonej-org/BoneJ2/wiki)For legacy ImageJ1 plug-ins, which are no longer maintained, please visit https://bonej.org/legacy.
## Overview
The code is in two main modules: `Legacy` and `Modern`. The code in `Legacy` is originally from [BoneJ1](https://bonej.org/legacy), but it has been refactored to manage its dependencies via Maven. Unlike BoneJ1, the plug-ins in `Legacy` work with Java 8 and the latest version of [Fiji](https://imagej.github.io/fiji/). However some of them still depend on [3D_Viewer](https://github.com/fiji/3D_Viewer), which is known to have issues with the latest versions of MacOS (see the [forum](https://forum.image.sc)).The main development happens in the `Modern` module. It hosts the modernized versions of BoneJ plug-ins, which fully comply with the current ImageJ API. Our goal is that as code matures, `Modern` hosts only "thin" wrapper plug-ins. They should be responsible only for interacting with the user, and collecting and displaying results. The wrappers call algorithms from the [Ops framework](https://imagej.net/ImageJ_Ops), specialised algorithms from BoneJ's own `Ops`, and utility code from `imagej-common`, `scifio` and other such core libraries.
## Contributing to BoneJ
If you'd like to improve the code in BoneJ or add new features, we'd greatly appreciate it! To get started have a look at the [contribution guidelines](https://github.com/bonej-org/BoneJ2/blob/master/CONTRIBUTING.md). The wiki and forum are good places to find info on how to develop ImageJ based software.