Yolo_Label/label_img.cpp

274 lines
7.4 KiB
C++
Raw Normal View History

2018-10-29 07:26:06 +03:00
#include "label_img.h"
#include <QPainter>
using std::ifstream;
QColor label_img::BOX_COLORS[10] ={ Qt::green,
Qt::darkGreen,
Qt::blue,
Qt::darkBlue,
Qt::yellow,
Qt::darkYellow,
Qt::red,
Qt::darkRed,
Qt::cyan,
Qt::darkCyan};
label_img::label_img(QWidget *parent)
:QLabel(parent),
m_bMouseLeftButtonClicked(false),
m_focusedObjectLabel(0)
{
}
void label_img::mouseMoveEvent(QMouseEvent *ev)
{
std::cout<< "moved"<< std::endl;
setMousePosition(ev->x(), ev->y());
showImage();
emit Mouse_Moved();
}
void label_img::mousePressEvent(QMouseEvent *ev)
{
std::cout<< "clicked"<< std::endl;
setMousePosition(ev->x(), ev->y());
if(ev->button() == Qt::RightButton)
{
removeFocusedObjectBox(m_mouse_pos_in_image_coordinate);
showImage();
}
else if(ev->button() == Qt::LeftButton)
{
m_bMouseLeftButtonClicked = true;
2018-10-30 11:51:33 +03:00
m_leftButtonClickedPoint = m_mouse_pos_in_image_coordinate;
2018-10-29 07:26:06 +03:00
}
emit Mouse_Pressed();
}
void label_img::mouseReleaseEvent(QMouseEvent *ev)
{
std::cout<< "released"<< std::endl;
2018-10-30 11:51:33 +03:00
if(ev->button() == Qt::LeftButton && m_bMouseLeftButtonClicked == true)
2018-10-29 07:26:06 +03:00
{
setMousePosition(ev->x(), ev->y());
ObjectLabelingBox objBoundingbox;
2018-10-30 11:51:33 +03:00
2018-10-29 07:26:06 +03:00
objBoundingbox.label = m_focusedObjectLabel;
2018-10-30 11:51:33 +03:00
objBoundingbox.box = getRectFromTwoPoints(m_mouse_pos_in_image_coordinate, m_leftButtonClickedPoint);
2018-10-29 07:26:06 +03:00
bool width_is_too_small = objBoundingbox.box.width() < m_inputImg.width() * 0.01;
bool height_is_too_small = objBoundingbox.box.height() < m_inputImg.height() * 0.01;
if(!width_is_too_small && !height_is_too_small)
m_objBoundingBoxes.push_back(objBoundingbox);
showImage();
2018-10-30 11:51:33 +03:00
m_bMouseLeftButtonClicked = false;
2018-10-29 07:26:06 +03:00
}
emit Mouse_Release();
}
void label_img::setMousePosition(int x, int y)
{
if(x < 0) x = 0;
if(y < 0) y = 0;
if(x > this->width()) x = this->width() - 1;
if(y > this->height()) y = this->height() - 1;
2018-11-06 10:12:27 +03:00
m_aspectRatioWidth = static_cast<double>(m_inputImg.width()) / this->width();
m_aspectRatioHeight = static_cast<double>(m_inputImg.height()) / this->height();
m_mouse_pos_in_image_coordinate = QPoint(static_cast<int>(x * m_aspectRatioWidth + 0.5),
static_cast<int>(y * m_aspectRatioHeight + 0.5));
2018-10-29 07:26:06 +03:00
}
void label_img::openImage(const QString &qstrImg)
{
m_inputImg = QImage(qstrImg);
2018-10-30 06:28:13 +03:00
m_inputImg = m_inputImg.convertToFormat(QImage::Format_RGB888);
2018-10-29 07:26:06 +03:00
m_inputImgCopy = m_inputImg;
m_objBoundingBoxes.clear();
2018-10-30 11:51:33 +03:00
m_leftButtonClickedPoint = QPoint();
m_bMouseLeftButtonClicked = false;
2018-10-29 07:26:06 +03:00
2018-10-30 11:51:33 +03:00
QPoint mousePosInUi = this->mapFromGlobal(QCursor::pos());
bool mouse_is_in_image = QRect(0, 0, this->width(), this->height()).contains(mousePosInUi);
2018-10-29 07:26:06 +03:00
2018-10-30 11:51:33 +03:00
if (mouse_is_in_image)
2018-10-29 07:26:06 +03:00
{
2018-10-30 11:51:33 +03:00
setMousePosition(mousePosInUi.x(), mousePosInUi.y());
2018-10-29 07:26:06 +03:00
}
else
{
2018-10-30 11:51:33 +03:00
m_mouse_pos_in_image_coordinate = QPoint();
2018-10-29 07:26:06 +03:00
}
}
void label_img::showImage()
{
if(m_inputImg.isNull()) return;
m_inputImg = m_inputImgCopy;
QPainter painter(&m_inputImg);
int penThick = (m_inputImg.width() + m_inputImg.height())/400;
QColor crossLineColor(255, 187, 0);
drawCrossLine(painter, crossLineColor, penThick);
drawFocusedObjectBox(painter, Qt::magenta, penThick);
drawObjectBoxes(painter, penThick);
this->setPixmap(QPixmap::fromImage(m_inputImg));
}
void label_img::loadLabelData(const QString& labelFilePath)
{
ifstream inputFile(labelFilePath.toStdString());
2018-10-30 11:51:33 +03:00
if(inputFile.is_open())
{
2018-10-29 07:26:06 +03:00
double inputFileValue;
QVector<double> inputFileValues;
while(inputFile >> inputFileValue)
inputFileValues.push_back(inputFileValue);
for(int i = 0; i < inputFileValues.size(); i += 5)
{
try {
ObjectLabelingBox objBox;
2018-10-30 11:51:33 +03:00
objBox.label = static_cast<int>(inputFileValues.at(i));
2018-10-29 07:26:06 +03:00
2018-11-06 10:12:27 +03:00
double midX = inputFileValues.at(i + 1) * m_inputImg.width();
double midY = inputFileValues.at(i + 2) * m_inputImg.height();
double width = inputFileValues.at(i + 3) * m_inputImg.width();
double height = inputFileValues.at(i + 4) * m_inputImg.height();
2018-10-29 07:26:06 +03:00
std::cout << "midX: " << midX << std::endl;
std::cout << "midX: " << midY << std::endl;
objBox.box.setX(static_cast<int>(midX - width/2 + 0.5));
objBox.box.setY(static_cast<int>(midY - height/2 + 0.5));
objBox.box.setWidth(static_cast<int>(width + 0.5));
objBox.box.setHeight(static_cast<int>(height + 0.5));
2018-10-29 07:26:06 +03:00
m_objBoundingBoxes.push_back(objBox);
}
catch (const std::out_of_range& e) {
std::cout << "loadLabelData: Out of Range error.";
}
}
}
}
void label_img::setFocusObjectLabel(int nLabel)
{
m_focusedObjectLabel = nLabel;
}
void label_img::setFocusObjectName(QString qstrName)
{
m_foucsedObjectName = qstrName;
}
void label_img::drawCrossLine(QPainter& painter, QColor color, int thickWidth)
{
2018-10-30 11:51:33 +03:00
if(m_mouse_pos_in_image_coordinate == QPoint()) return;
2018-10-29 07:26:06 +03:00
QPen pen;
pen.setWidth(thickWidth);
pen.setColor(color);
painter.setPen(pen);
//draw cross line
painter.drawLine(QPoint(m_mouse_pos_in_image_coordinate.x(),0), QPoint(m_mouse_pos_in_image_coordinate.x(),m_inputImg.height() - 1));
painter.drawLine(QPoint(0,m_mouse_pos_in_image_coordinate.y()), QPoint(m_inputImg.width() - 1, m_mouse_pos_in_image_coordinate.y()));
2018-10-30 11:51:33 +03:00
std::cout << "draw Cross Line" << std::endl;
2018-10-29 07:26:06 +03:00
}
void label_img::drawFocusedObjectBox(QPainter& painter, Qt::GlobalColor color, int thickWidth)
{
if(m_bMouseLeftButtonClicked)
{
QPen pen;
pen.setWidth(thickWidth);
pen.setColor(color);
painter.setPen(pen);
2018-10-30 11:51:33 +03:00
painter.drawRect(QRect(m_leftButtonClickedPoint, m_mouse_pos_in_image_coordinate));
2018-10-29 07:26:06 +03:00
}
}
void label_img::drawObjectBoxes(QPainter& painter, int thickWidth)
{
QPen pen;
pen.setWidth(thickWidth);
for(ObjectLabelingBox boundingbox: m_objBoundingBoxes)
{
pen.setColor(m_drawObjectBoxColor.at(boundingbox.label));
painter.setPen(pen);
painter.drawRect(boundingbox.box);
}
}
void label_img::removeFocusedObjectBox(QPoint point)
{
int removeBoxIdx = -1;
double nearestBoxDistance = 99999999999999.;
for(int i = 0; i < m_objBoundingBoxes.size(); i++)
{
QRect objBox = m_objBoundingBoxes.at(i).box;
if(objBox.contains(point))
{
2018-10-30 12:33:01 +03:00
double distance = objBox.width() + objBox.height();
2018-10-29 07:26:06 +03:00
if(distance < nearestBoxDistance)
{
nearestBoxDistance = distance;
removeBoxIdx = i;
}
}
}
if(removeBoxIdx != -1)
{
m_objBoundingBoxes.remove(removeBoxIdx);
}
}
QRect label_img::getRectFromTwoPoints(QPoint p1, QPoint p2)
{
int midX = (p1.x() + p2.x()) / 2;
int midY = (p1.y() + p2.y()) / 2;
int width = abs(p1.x() - p2.x());
int height = abs(p1.y() - p2.y());
QPoint topLeftPoint(midX - width/2, midY - height/2);
QPoint bottomRightPoint(midX + width/2, midY + height/2);
return QRect(topLeftPoint, bottomRightPoint);
}