-----Original Message-----
From: Mark Rivers
Sent: Monday, November 19, 2018 12:48 PM
To: 'Michael Davidsaver' <[email protected]>
Cc: [email protected]
Subject: RE: Compression in pvAccess
Can you be more specific about what is being suggested? "pvAccess"
is a bit generic, at least on the
c++ side (eg. pvAccessCPP vs. normativeTypesCPP vs. pvDatabaseCPP)?
I'm not sure what the best level to implement this is. My particular application would be met by having normativeTypesCPP implement compression and decompression methods for NTNDArrays according to the compression algorithm specified in the existing ".codec" field. But perhaps there are other large data objects that people use with pvAccess which would also benefit from compression, and so this should not be implemented only for NTNDArrays?
I think I will take a stab at doing this in the ImageJ client, just to see if it works. But longer term it would be nice to have it implemented in the pvAccess libraries, not in the client code.
Mark
-----Original Message-----
From: Michael Davidsaver <[email protected]>
Sent: Monday, November 19, 2018 12:41 PM
To: Mark Rivers <[email protected]>
Cc: [email protected]
Subject: Re: Compression in pvAccess
it would be much nicer to have the decompression library and
compress/decompress methods as part of pvAccess
Can you be more specific about what is being suggested? "pvAccess" is
a bit generic, at least on the
c++ side (eg. pvAccessCPP vs. normativeTypesCPP vs. pvDatabaseCPP)?
On 11/16/18 12:25 PM, Mark Rivers wrote:
Folks,
Bruno has written a new plugin for areaDetector called NDPluginCodec. It compresses and decompresses NDArrays using JPEG (lossy) and Blosc (lossless) compression. NDArrays now have a .codec field, just as NTNDArrays do. He implemented these fields in the areaDetector converters for NDArrays <-> NTNDArrays.
Using these new capabilities I just set up the following configuration. The simDetector IOC is running on one machine (happens to be Linux), and the receiving IOC and ImageJ are running on another machine (happens to be Windows).
simDetector detector => NDPluginCodec (compress) =>
NDPluginPVA => pvaAccess over Ethernet => pvaDetector =>
NDPluginCodec (decompress) => NDPluginPva => pvaAccess localhost
=> ImageJ pvAccess viewer
By enabling the compression I can reduce the network bandwidth >100x for highly compressible images.
The next step would be to eliminate the need for the IOC on the viewer machine, i.e. the viewer can directly decompress the NTNDArray that comes from pvAccess.
One way to implement this is to require the decompression code be in
the client (ImageJ, Display Builder, etc.). But it would be much nicer to have the decompression library and compress/decompress methods as part of pvAccess, so then each client does not need to implement it.
In my opinion the top priority should be Java, since Phoebus/CSS/Display Builder and ImageJ are both written in Java. If we get this working then we can transport images between camera/detector IOCs and remote viewing clients with much lower network bandwidth than is currently required. We can do both lossless and lossy compression.
There is already a Blosc implementation for Java:
https://github.com/Blosc/JBlosc
So far I have only found a JNI implementation for JPEG, but hopefully there is a pure Java implementation as well.
Thoughts?
Mark