Skip to content
Open
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ add_executable(PixelAnnotationTool MACOSX_BUNDLE WIN32
src/image_canvas.h
src/label_widget.cpp
src/label_widget.h
src/slic_parameter.cpp
src/slic_parameter.h
src/main.cpp
${UI_TEST_HDRS})
target_link_libraries(PixelAnnotationTool Qt5::Gui Qt5::Widgets ${OpenCV_LIBS})
Expand Down
346 changes: 346 additions & 0 deletions CMakeLists.txt.user

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/about_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ AboutDialog::AboutDialog(QWidget *parent):QDialog(parent) {
"<body style=\" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:400; font-style:normal;\">"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:10pt;\">Version Info : " INFO_PIXEL_ANNOTATION_TOOL_VERSION "</span></p>"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;\"><br /></p>"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:10pt;\">Author: </span><span style=\" font-size:10pt; font-weight:600;\">Amaury Br�h�ret</span></p>"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:10pt;\">Author: </span><span style=\" font-size:10pt; font-weight:600;\">Amaury Breheret</span></p>"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:10pt;\">Software use : </span><a href=\"http://opencv.org/\"><span style=\" font-size:10pt; text-decoration: underline; color:#0000ff;\">OpenCV</span></a><span style=\" font-size:10pt;\"> and </span><a href=\"https://www.qt.io/\"><span style=\" font-size:10pt; text-decoration: underline; color:#0000ff;\">Qt</span></a><span style=\" font-size:10pt;\">.</span></p>"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:10pt;\">Make donation : </span><a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=8K79VKWBS7352\"><span style=\" font-size:10pt; text-decoration: underline; color:#0000ff;\">Donate</span></a></p>"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;\"><br /></p>"
Expand Down
Loading