-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathimageviewerplateselector.h
73 lines (56 loc) · 1.54 KB
/
imageviewerplateselector.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#ifndef IMAGEVIEWERPLATESELECTOR_H
#define IMAGEVIEWERPLATESELECTOR_H
#include <QPolygon>
#include <QList>
#include "imageviewerbase.h"
class Dot;
/*
* Image viewer to display a car with static license plates
*/
class ImageViewerPlateSelector : public ImageViewerBase
{
Q_OBJECT
public:
explicit ImageViewerPlateSelector(QWidget *parent = nullptr);
/*
* Check if the given dot geometry fits into the pixmap
*/
bool acceptableDotPosition(const QRect &rect) const;
/*
* Add a new dot at the given point
*/
bool addDotInViewCoordinates(const QPoint &point);
bool addDotInImageCoordinates(const QPoint &point);
/*
* Remove all dots
*/
void clearDots();
/*
* Selection result as a polygon with 4 points. Each point is
* in image coordinates
*/
QPolygon selectedPolygon() const;
protected:
/*
* For handling selection
*/
virtual void mousePressEvent(QMouseEvent *e) override;
virtual void mouseMoveEvent(QMouseEvent *e) override;
virtual void mouseReleaseEvent(QMouseEvent *e) override;
virtual void pixmapAboutToBeChanged() override;
virtual void pixmapChanged() override;
virtual void draw(QPainter *painter) override;
private:
void updatePointInImage(Dot *dot) const;
void emitDotsChanged();
bool reorderDots();
signals:
void dotsChanged(int);
private slots:
void slotDotMoving();
void slotDotMoved();
private:
// selection dots
QList<Dot *> m_dots;
};
#endif // IMAGEVIEWERPLATESELECTOR_H