I am contributing to a new / small open source project that can be very well suited to your needs.
Glimpse Project It aims to help build 2D data visualization in Java, with particular emphasis on processing large datasets and simplifying real-time interactivity to easily explore data.
It uses OpenGL to use hardware features on modern GPUs such as texture memory and shaders to achieve the above goals. Therefore, if you use Java2D, this will not work for you. However, Glimpse panels can be placed side by side with other Swing components, making it easy to get into your existing Swing GUI. The only thing you need is a decent graphics card.
The image is an example of a large data matrix, the coloring of which is dynamically adjusted using the color bar on the right (matrix data is stored in the graphics processor texture, and dynamic repainting is performed using a custom shader). The source for this example is HeatMapExample.java . There are many other examples that provide starting points for working with other Glimpse functions.
You can find out more at glimpse.metsci.com . On the first page there is an embedded video, and examples of Java WebStart . Source posted on GitHub .
source share