96 lines
2.0 KiB
C
96 lines
2.0 KiB
C
|
#pragma once
|
|||
|
|
|||
|
#include <QDialog>
|
|||
|
#include "ui_frmSkeleton.h"
|
|||
|
#include <opencv2\opencv.hpp>
|
|||
|
#include "mytitlebar.h"
|
|||
|
#include "QGraphicsViews.h"
|
|||
|
#include "Toolnterface.h"
|
|||
|
|
|||
|
struct InitSkeletonData
|
|||
|
{
|
|||
|
bool use_roi;
|
|||
|
QString type;
|
|||
|
qreal x;
|
|||
|
qreal y;
|
|||
|
qreal width;
|
|||
|
qreal height;
|
|||
|
qreal Lenth1;
|
|||
|
qreal Lenth2;
|
|||
|
qreal Pi;
|
|||
|
qreal R;
|
|||
|
QList<QPointF> init_points;
|
|||
|
QList<QList<QPointF>> list_ps;
|
|||
|
};
|
|||
|
Q_DECLARE_METATYPE(InitSkeletonData);
|
|||
|
|
|||
|
class frmSkeleton : public Toolnterface
|
|||
|
{
|
|||
|
Q_OBJECT
|
|||
|
|
|||
|
public:
|
|||
|
frmSkeleton(QString toolName, QToolBase* toolBase, QWidget* parent = Q_NULLPTR);
|
|||
|
~frmSkeleton();
|
|||
|
|
|||
|
private:
|
|||
|
Ui::frmSkeletonClass ui;
|
|||
|
|
|||
|
public:
|
|||
|
virtual int Execute(const QString toolname);
|
|||
|
virtual int ExecuteLink(const int int_link, const QString str_link, const QMap<QString, gVariable::Global_Var> variable_link = QMap<QString, gVariable::Global_Var>());
|
|||
|
virtual int ExecuteAllLink(const QMap<QString, gVariable::Global_Var> g_variable_link);
|
|||
|
virtual int InitSetToolData(const QVariant data);
|
|||
|
virtual QVariant InitGetToolData();
|
|||
|
|
|||
|
private:
|
|||
|
void initTitleBar();
|
|||
|
void paintEvent(QPaintEvent* event);
|
|||
|
|
|||
|
private slots:
|
|||
|
void onButtonCloseClicked();
|
|||
|
|
|||
|
protected:
|
|||
|
MyTitleBar* m_titleBar;
|
|||
|
QString toolTitleName;
|
|||
|
|
|||
|
private slots:
|
|||
|
void on_btnExecute_clicked();
|
|||
|
void on_btnLinkImage_clicked();
|
|||
|
void on_btnDelLinkImage_clicked();
|
|||
|
void on_btnAddROI_clicked();
|
|||
|
void on_btnDeleteROI_clicked();
|
|||
|
|
|||
|
private:
|
|||
|
int RunToolPro();
|
|||
|
QImage Mat2QImage(const cv::Mat& mat);
|
|||
|
bool ImgThin(cv::Mat& src, cv::Mat& dst, const int intera) const;
|
|||
|
|
|||
|
private:
|
|||
|
gVariable gvariable;
|
|||
|
QGraphicsViews* view;
|
|||
|
QStringList strs;
|
|||
|
cv::Mat srcImage;
|
|||
|
cv::Mat dstImage;
|
|||
|
int image_index = 0;
|
|||
|
int tool_index = 0;
|
|||
|
int region_buf = 0;
|
|||
|
RectangleItem* rectangle_item;
|
|||
|
RectangleRItem* rectangler_item;
|
|||
|
CircleItem* circle_item;
|
|||
|
PolygonItem* polygon_item;
|
|||
|
MRectangle m_rectangle;
|
|||
|
MRotatedRect m_rotatedrect;
|
|||
|
MCircle m_circle;
|
|||
|
MPolygon m_polygon;
|
|||
|
cv::Rect rect;
|
|||
|
cv::Mat mask;
|
|||
|
cv::Mat dst;
|
|||
|
};
|
|||
|
|
|||
|
//全局变量控制
|
|||
|
class QConfig
|
|||
|
{
|
|||
|
public:
|
|||
|
static int nFormState;
|
|||
|
};
|