This repository has been archived by the owner on Jan 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
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
53 changed files
with
5,361 additions
and
168 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 |
---|---|---|
@@ -1,3 +1,54 @@ | ||
# RUBO-UDIPM | ||
近期因网络问题无法将更新上传github,请移步CSDN | ||
https://download.csdn.net/download/wu58430/86399773 | ||
|
||
github:https://github.com/wu58430/RUBO-UDIPM | ||
|
||
提供了能同时完成去畸变与逆透视或去畸变+逆透视图像处理的上位机软件 | ||
|
||
去畸变教程:https://blog.csdn.net/wu58430/article/details/127324103 | ||
|
||
逆透视教程:https://blog.csdn.net/wu58430/article/details/126317900 | ||
|
||
去畸变+逆透视教程:https://blog.csdn.net/wu58430/article/details/127592501 | ||
|
||
如只需要上位机程序,请下载Release。 | ||
|
||
请为下载和使用此软件的每个用户阅读以下内容: | ||
|
||
RUBO UDIPM遵循GPLv3协议,是开源的。 | ||
|
||
仅用于竞争、学习和交流,不用于商业或付费教学目的!!!!!!! | ||
|
||
Please read the following for each user who downloads and uses this software: | ||
|
||
Rubo IPM follows the GPLv3 protocol and is open source. | ||
|
||
Only for competition, learning and communication, not for commercial or paid teaching purposes!!!!!!! | ||
|
||
更新日志 | ||
|
||
2022.8.23 修复了不同版本windows兼容问题 | ||
|
||
2022.8.27 修复中文路径、视图大小异常问题,缩小程序体积 | ||
|
||
2022.9.23 增加了彩色图像显示,输出格式改为数组 | ||
|
||
2022.10.7 代码迁移至QT6.3.1环境,加入去畸变,加入保存图片功能 | ||
|
||
2022.10.29 融合两种方法,修复保存图像色彩错误问题 | ||
|
||
2023.1.12 修复去畸变+逆透视下位机代码中未考虑的可能 | ||
|
||
2023.8.21 修复结果图尺寸异常 | ||
|
||
特别鸣谢 | ||
华北电力大学(保定)欧 da jun | ||
广东工业大学 刘 jun fan | ||
安徽财经大学 陈 xin yun | ||
山东农业工程学院 刘 hao xiang | ||
哈尔滨工程大学 | ||
17届东北林业大学智能车战队 | ||
|
||
感谢TWU的兄弟提供的测试集,希望作为透视变换最快速度的指针映射法能够帮助更多队伍在智能车竞赛上大放光彩 | ||
|
||
|
||
|
Binary file not shown.
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,40 @@ | ||
#include <windows.h> | ||
|
||
IDI_ICON1 ICON "C:\\Users\\RUPC\\Desktop\\RUBO-UDIPM\\Source\\QT Source\\change-view\\RUBO1-tou.ico" | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION 1,8,0,0 | ||
PRODUCTVERSION 1,8,0,0 | ||
FILEFLAGSMASK 0x3fL | ||
#ifdef _DEBUG | ||
FILEFLAGS VS_FF_DEBUG | ||
#else | ||
FILEFLAGS 0x0L | ||
#endif | ||
FILEOS VOS_NT_WINDOWS32 | ||
FILETYPE VFT_DLL | ||
FILESUBTYPE VFT2_UNKNOWN | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "000404b0" | ||
BEGIN | ||
VALUE "CompanyName", "RUBO\0" | ||
VALUE "FileDescription", "MADE BY RUBO\0" | ||
VALUE "FileVersion", "1.8.0.0\0" | ||
VALUE "LegalCopyright", "RUBO\0" | ||
VALUE "OriginalFilename", "RUBO_UDIPM.exe\0" | ||
VALUE "ProductName", "RUBO UDIPM\0" | ||
VALUE "ProductVersion", "1.8.0.0\0" | ||
VALUE "InternalName", "\0" | ||
VALUE "Comments", "\0" | ||
VALUE "LegalTrademarks", "\0" | ||
END | ||
END | ||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x0004, 1200 | ||
END | ||
END | ||
/* End of Version info */ | ||
|
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
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
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
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
Oops, something went wrong.