Package me.clarius.sdk
Class SpectralImageInfo
java.lang.Object
me.clarius.sdk.SpectralImageInfo
Spectral image information supplied with each block.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionintBits per sample.intNumber of lines in the block.doubleMicrons per pixel/sample in an M spectrum.doubleLine acquisition period in seconds.intFlag specifying the data is PW and not M.intNumber of samples per line.doubleVelocity in m/s per pixel/sample in a PW spectrum.
- 
Constructor SummaryConstructorsConstructorDescriptionDefault constructor.SpectralImageInfo(int lines, int samples, int bitsPerSample, double period, double micronsPerSample, double velocityPerSample, int pw) Constructor with parameters.
- 
Method Summary
- 
Field Details- 
linespublic int linesNumber of lines in the block.
- 
samplespublic int samplesNumber of samples per line.
- 
bitsPerSamplepublic int bitsPerSampleBits per sample.
- 
periodpublic double periodLine acquisition period in seconds.
- 
micronsPerSamplepublic double micronsPerSampleMicrons per pixel/sample in an M spectrum.
- 
velocityPerSamplepublic double velocityPerSampleVelocity in m/s per pixel/sample in a PW spectrum.
- 
pwpublic int pwFlag specifying the data is PW and not M.
 
- 
- 
Constructor Details- 
SpectralImageInfopublic SpectralImageInfo()Default constructor.
- 
SpectralImageInfopublic SpectralImageInfo(int lines, int samples, int bitsPerSample, double period, double micronsPerSample, double velocityPerSample, int pw) Constructor with parameters.- Parameters:
- lines- Number of lines in the block.
- samples- Number of samples per line.
- bitsPerSample- Bits per sample.
- period- Line acquisition period in seconds.
- micronsPerSample- Microns per pixel/sample in an M spectrum.
- velocityPerSample- Velocity in m/s per pixel/sample in a PW spectrum.
- pw- Flag specifying the data is PW and not M.
 
 
-