Ershat.DL

Results 5 issues of Ershat.DL

first, thanks to the deploying app. is it necessay to comuzimise ```fhsLikeMode``` and ```AppRun``` ? like ```-no-fhs-mode```, ``` -no-link ``` or ``` -link-name= ```?

现在 匹配的场景是 相机和平面90度的, 有些场景可能不是直视的。如何相机和场景平面之间存在角度。 如果是这种场景 这匹配算法就不起作用了。 我目前想到的两种方案: **1. 标定相机,把平面透视校正 2. 放弃模板匹配,使用特征的匹配** **关于这个问题 有什么解决方案 或 理论想法?**

我试图修改旋转范围, 并且分别得到了不同的结果 旋转角度为 0 ![image](https://github.com/DennisLiu1993/Fastest_Image_Pattern_Matching/assets/79347883/8c5e853c-c8c6-4693-822b-288d006414fa) 更改旋转范围时 ![image](https://github.com/DennisLiu1993/Fastest_Image_Pattern_Matching/assets/79347883/b8dbda5f-4620-4f8a-8b32-423ef83eb2b9) 问题出现在这个代码 ``` if (vecNewMatchParameter[j].dMatchScore > dBigValue) { iMaxScoreIndex = j; dBigValue = vecNewMatchParameter[j].dMatchScore; } ``` 看了一下代码, 分别计算 金字塔第二层 和 第三层 时 对应的角度和阈值如下: 第二层...

I copied the simple_record_example.dart, and I have added many permissions to Android Manifest.xml ```sh ``` but still have the same error , it says that cannot found `flutter_sound_example.aac` file ```sh...

最近 qimage 转换到 halcon image 的时候遇到了问题, ``` QImage qimage; qimage.load("path/to/image"); qimage = qimage.convertToFormat(QImage::Format_Grayscale8); HalconCpp::HObject himg; HalconCpp::GenImage1(&himg, "byte", width, height, (Hlong)buffer.data()); ``` 转换后的图像不正常。 但是 如下代码成功了。 ``` QImage qimage; qimage.load("path/to/image"); qimage =...