Skip to content

Commit

Permalink
删除手眼标定
Browse files Browse the repository at this point in the history
  • Loading branch information
imuncle committed Oct 21, 2021
1 parent 2720d6e commit 6ff32bf
Show file tree
Hide file tree
Showing 73 changed files with 1,820 additions and 6,919 deletions.
4 changes: 2 additions & 2 deletions AboutUs.ui
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
</rect>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;产品: TStoneCalibration&lt;/p&gt;&lt;p&gt;版本: 1.2.6&lt;/p&gt;&lt;p&gt;开发: 基于&lt;a href=&quot;https://www.qt.io/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Qt&lt;/span&gt;&lt;/a&gt;和开源项目&lt;a href=&quot;https://opencv.org/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;OpenCV&lt;/span&gt;&lt;/a&gt;开发&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;产品: TStoneCalibration&lt;/p&gt;&lt;p&gt;版本: 1.3.0&lt;/p&gt;&lt;p&gt;开发: 基于&lt;a href=&quot;https://www.qt.io/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Qt&lt;/span&gt;&lt;/a&gt;和开源项目&lt;a href=&quot;https://opencv.org/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;OpenCV&lt;/span&gt;&lt;/a&gt;开发&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
Expand Down Expand Up @@ -93,7 +93,7 @@
</rect>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;实验室官网: &lt;a href=&quot;http://ri.cuhk.edu.hk/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://ri.cuhk.edu.hk/&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;联系我们: [email protected]&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-size:7pt;&quot;&gt;Copyright © 2020 CUHK CURI Embedded AI Group&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;实验室官网: &lt;a href=&quot;http://ri.cuhk.edu.hk/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://ri.cuhk.edu.hk/&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;联系我们: [email protected]&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-size:7pt;&quot;&gt;Copyright © 2021 CUHK CURI Embedded AI Group&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
Expand Down
37 changes: 37 additions & 0 deletions CMakeLists.txt
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
)
Loading

0 comments on commit 6ff32bf

Please sign in to comment.