-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
73 changed files
with
1,820 additions
and
6,919 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ | |
</rect> | ||
</property> | ||
<property name="text"> | ||
<string><html><head/><body><p>产品: TStoneCalibration</p><p>版本: 1.2.6</p><p>开发: 基于<a href="https://www.qt.io/"><span style=" text-decoration: underline; color:#0000ff;">Qt</span></a>和开源项目<a href="https://opencv.org/"><span style=" text-decoration: underline; color:#0000ff;">OpenCV</span></a>开发</p></body></html></string> | ||
<string><html><head/><body><p>产品: TStoneCalibration</p><p>版本: 1.3.0</p><p>开发: 基于<a href="https://www.qt.io/"><span style=" text-decoration: underline; color:#0000ff;">Qt</span></a>和开源项目<a href="https://opencv.org/"><span style=" text-decoration: underline; color:#0000ff;">OpenCV</span></a>开发</p></body></html></string> | ||
</property> | ||
<property name="alignment"> | ||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> | ||
|
@@ -93,7 +93,7 @@ | |
</rect> | ||
</property> | ||
<property name="text"> | ||
<string><html><head/><body><p>实验室官网: <a href="http://ri.cuhk.edu.hk/"><span style=" text-decoration: underline; color:#0000ff;">http://ri.cuhk.edu.hk/</span></a></p><p>联系我们: [email protected]</p><p><span style=" font-size:7pt;">Copyright © 2020 CUHK CURI Embedded AI Group</span></p></body></html></string> | ||
<string><html><head/><body><p>实验室官网: <a href="http://ri.cuhk.edu.hk/"><span style=" text-decoration: underline; color:#0000ff;">http://ri.cuhk.edu.hk/</span></a></p><p>联系我们: [email protected]</p><p><span style=" font-size:7pt;">Copyright © 2021 CUHK CURI Embedded AI Group</span></p></body></html></string> | ||
</property> | ||
<property name="alignment"> | ||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
cmake_minimum_required(VERSION 2.8.11) | ||
|
||
project(TStoneCalib) | ||
|
||
set(CMAKE_CXX_STANDARD 11) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
# init_qt: Let's do the CMake job for us | ||
set(CMAKE_AUTOMOC ON) # For meta object compiler | ||
set(CMAKE_AUTORCC ON) # Resource files | ||
set(CMAKE_AUTOUIC ON) # UI files | ||
|
||
# Find includes in corresponding build directories | ||
set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
|
||
# Find the QtWidgets library | ||
find_package(Qt5 REQUIRED COMPONENTS Widgets Core Gui) | ||
find_package(OpenCV REQUIRED) | ||
|
||
include_directories( | ||
DetectCorner | ||
Calibrate | ||
${OpenCV_INCLUDE_DIRS} | ||
${CMAKE_CURRENT_SOURCE_DIR} | ||
${CMAKE_CURRENT_BINARY_DIR} | ||
) | ||
|
||
file(GLOB project_SOURCES "*.cpp" "res/*.qrc" "DetectCorner/*.cpp" "Calibrate/*.cpp") | ||
|
||
add_executable(${PROJECT_NAME} ${project_SOURCES}) | ||
|
||
target_link_libraries(${PROJECT_NAME} | ||
${OpenCV_LIBRARIES} | ||
Qt5::Core | ||
Qt5::Gui | ||
Qt5::Widgets | ||
) |
Oops, something went wrong.