Hello everyone, I want to build the imread, imshow,dilate and other functions of Opencv into DLLS for E language to call. But what data type should the Mat data after imread reads the image be? Can the subsequent functions such as imshow and dilate be used in E language programs? If possible, please help me write a sample code. Thank you!
According to me you can’t pass Mat directly to E language. Instead of that I think you should wrap your OpenCV calls in exported C- style function inside the DLL.