Closed AkiraShibata18 closed 3 years ago
Hi AkiraShibata,
Did you test this update only on CMake on Linux? Have you had any test on Visual Studio as well?
Thanks, Cihan
Hi Cihan,
Thank you for your reply. Yes, I checked only on CMake on Ubuntu18.04. This change is for basic matter in C++, so I feel there are no bad influence on the other environment. But If I should check on Visual Studio on Windows, I will try.
Regards, Akira
i have a PR to merge some ED_Lib functionality into OpenCV and already made same changes in my PR.
any help ( testing, giving ideas etc.) about the PR will be appreciated.
corrupted double-linked list
error occurred when EDCircles is used for streaming image data. I built EDCirles using CMake, so to analyze this error, AddressSanitizer was used by adding set parameter in CMakeLists.txt like below.According to AddressSanitizer,
delete p
(pointer of array) in source code should bedelete[] p
.All corresponding parts in both EDCircles.cpp and EDCircles.h are fixed.