Files
HPPA/HPPA/resononImager.h
2026-04-02 10:34:57 +08:00

48 lines
1012 B
C++

#ifndef RESONON_IMAGER
#define RESONON_IMAGER
#include <string>
#include <opencv2/core/core.hpp>
#include "ImagerOperationBase.h"
#include "resonon_imager_basler.h"
#include "image2display.h"
#include "fileOperation.h"
class ResononPicaLImager:public ImagerOperationBase
{
Q_OBJECT
public:
ResononPicaLImager();
~ResononPicaLImager();
Resonon::PikaBasler m_ResononPicaLImager;//
double getWavelengthAtBand(int band);
int getBandCount();
int getSampleCount();
double getFramerate();
double getIntegrationTime();
double getGain();
void setFramerate(const double frames_per_second);
void setIntegrationTime(const double milliseconds);
void setGain(const double gain);
int getStartBand();
int getEndBand();
void connectImager(const char* camera_sn = NULL);
void disconnectImager();
void imagerStartCollect();
void imagerStopCollect();
unsigned short* getFrame(unsigned short* buffer);
void setSpectraBin(int new_spectral_bin);
protected:
private:
public slots:
signals:
};
#endif