mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
41 lines
No EOL
918 B
C++
41 lines
No EOL
918 B
C++
#include "cpr_reader.h"
|
|
#include "common/repack.h"
|
|
|
|
#include "logger.h"
|
|
|
|
namespace cloudsat
|
|
{
|
|
namespace cpr
|
|
{
|
|
CPReader::CPReader()
|
|
{
|
|
image = new unsigned short[1000000 * 126];
|
|
lines = 0;
|
|
}
|
|
|
|
CPReader::~CPReader()
|
|
{
|
|
delete[] image;
|
|
}
|
|
|
|
void CPReader::work(uint8_t *buffer)
|
|
{
|
|
repackBytesTo20bits(&buffer[83], 402 - 83, buffer20);
|
|
|
|
for (int i = 0; i < 126; i++)
|
|
{
|
|
// logger->info(buffer20[i]);
|
|
// uint16_t pixel = buffer[pos + channel + i * 5];
|
|
image[lines * 126 + i] = buffer20[i] >> 4;
|
|
}
|
|
|
|
// Frame counter
|
|
lines++;
|
|
}
|
|
|
|
image::Image CPReader::getChannel()
|
|
{
|
|
return image::Image(image, 16, 126, lines, 1);
|
|
}
|
|
} // namespace avhrr
|
|
} // namespace noaa
|