Difference between revisions of "Developing Fiji"
Schindelin (talk | contribs) (→Discussing code: stop recommending open-in-gitweb.sh) |
m (Update minimal-ij1-plugin link to example-legacy-plugin, due to renamed repository) |
||
(10 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{FijiMenu}}{{Outdated}} |
+ | |||
Fiji is a community effort. So we are happy whenever we see new people developing Fiji! | Fiji is a community effort. So we are happy whenever we see new people developing Fiji! | ||
Line 5: | Line 6: | ||
The purpose of this tutorial is to get you started hacking on [https://github.com/fiji/ Fiji's source code] (i.e., the core Fiji plugins). If you need to develop a ''new plugin'' for ImageJ, you do not actually need Fiji's source. Rather, see these resources: | The purpose of this tutorial is to get you started hacking on [https://github.com/fiji/ Fiji's source code] (i.e., the core Fiji plugins). If you need to develop a ''new plugin'' for ImageJ, you do not actually need Fiji's source. Rather, see these resources: | ||
− | * {{GitHub|org=imagej|repo= | + | * {{GitHub|org=imagej|repo=example-legacy-plugin|label=example-legacy-plugin}} project template |
* [[Introduction into Developing Plugins]] tutorial | * [[Introduction into Developing Plugins]] tutorial | ||
* [https://www.youtube.com/watch?v=Ac-6gJ2eRb0 Developing ImageJ 1.x plugins with NetBeans] screencast | * [https://www.youtube.com/watch?v=Ac-6gJ2eRb0 Developing ImageJ 1.x plugins with NetBeans] screencast | ||
Line 14: | Line 15: | ||
First, you have to [[Downloading_and_Building_Fiji_From_Source|download and build Fiji]]. If you do not know Git yet, we have a [[Git for dummies|concise introduction]] for you. | First, you have to [[Downloading_and_Building_Fiji_From_Source|download and build Fiji]]. If you do not know Git yet, we have a [[Git for dummies|concise introduction]] for you. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Building Fiji == | == Building Fiji == | ||
Line 54: | Line 35: | ||
== Discussing code == | == Discussing code == | ||
− | When you want to discuss | + | When you want to propose and/or discuss changes to some source code, the preferred way is to [[contributing|submit a PR on GitHub]]. |
− | |||
− | |||
− | |||
− | |||
== Contributing == | == Contributing == | ||
− | Please | + | Please have a look at the excellent ''[[How to contribute to an existing plugin or library]]'' tutorial. |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Providing documentation == | == Providing documentation == | ||
Line 132: | Line 67: | ||
[[Category:Development]] | [[Category:Development]] | ||
+ | [[Category:Fiji]] |
Latest revision as of 14:56, 6 June 2017
![]() | ||||
---|---|---|---|---|
Overview | ||||
Using Fiji | ||||
Featured Fiji Projects | ||||
Fiji Publications | ||||
Links | ||||
|
Fiji is a community effort. So we are happy whenever we see new people developing Fiji!
Contents
Purpose
The purpose of this tutorial is to get you started hacking on Fiji's source code (i.e., the core Fiji plugins). If you need to develop a new plugin for ImageJ, you do not actually need Fiji's source. Rather, see these resources:
- example-legacy-plugin project template
- Introduction into Developing Plugins tutorial
- Developing ImageJ 1.x plugins with NetBeans screencast
See also Developing Fiji in Eclipse for a tutorial specific to the Eclipse IDE.
Getting started
First, you have to download and build Fiji. If you do not know Git yet, we have a concise introduction for you.
Building Fiji
Fiji is organized into a set of Maven projects. For convenience and speed, there is SciJava's minimal Maven-lookalike MiniMaven to build Fiji, but it is recommended to use an Integrated Development Environment, or at least real Maven.
For details, please see Downloading and Building Fiji From Source. See also the Supported Compilers page for more information.
Testing
It is strongly recommended to write regression tests (also known as unit tests). It is easy.
Furthermore, it is highly recommended to write and run unit tests in an Integrated Development Environment for efficient debugging.
You may also want to measure the code coverage of your tests - one way is described in the page Code Coverage in Fiji.
At some point, you might want to debug whatever you wrote. There's a small Debugging intro page.
Discussing code
When you want to propose and/or discuss changes to some source code, the preferred way is to submit a PR on GitHub.
Contributing
Please have a look at the excellent How to contribute to an existing plugin or library tutorial.
Providing documentation
A plugin wants to be used. Therefore you want to give users some information about it, and most likely also a tutorial how to use it.
If you have an account on this Wiki, you can easily create new tutorials with the Tutorial Maker.
Further reading for developers
- Overview of Fiji's source code
- Description of ImageJ's plugin architecture
- Tips for developers
- ImageJ1 Javadoc ZIP (for offline usage)
- ImageJ2 Javadoc ZIP (for offline usage)
- Developers HowTo
- ImageJ plugin writing tutorial
- ImageJ programming tutorials
- Uploading plugins
- Developing Fiji in Eclipse
- Git
- Project ideas
- Code Coverage in Fiji
- Introduction to debugging
- Profiling Java Code
- Tips for C++ developers