Back to neurospy for developers
This page is a log of the pros and cons of using the Java Advanced Imaging library.
The major pros to this library are as follows:
The major cons to this library are as follows:
There are some basic image format classes:
The imaging graph is the flow of data through image operations starting from the source and ending with the sink. It is also called a chain.
The most common graph is a directed acyclic graph (DAG) which has each objects represented by a node which can reference each other from the edges (like a graphical programming language).
Rendered graphs are computed upon instantiation and are constant. Renderable graphs are computed when requested and are variable.
By using Renderable graphs one can implement the “push” model. Data is changed when necessary and the image is then called to be rendered based on whatever data is present at the time of call (as opposed to instantiation).
For more details see Java Image Representations