19 lines
276 B
C
19 lines
276 B
C
|
#pragma once
|
||
|
|
||
|
#include <wx/wx.h>
|
||
|
#include <opencv2/opencv.hpp>
|
||
|
|
||
|
class CImagePanel : public wxPanel
|
||
|
{
|
||
|
public:
|
||
|
CImagePanel(wxWindow* parent);
|
||
|
|
||
|
public:
|
||
|
void set_img(const cv::Mat& img);
|
||
|
|
||
|
protected:
|
||
|
void OnPaint(wxPaintEvent& event);
|
||
|
|
||
|
private:
|
||
|
wxBitmap bitmap_;
|
||
|
};
|