How to embedd openCV Dll's in Executable

后端 未结 3 2154
误落风尘
误落风尘 2021-01-03 11:52

I wrote an image matching tool (console application, without gui or windows), using openCV. I want to port my EXE file to another computer but it asks for opencv dlls (open

3条回答
  •  误落风尘
    2021-01-03 12:23

    The term you're looking for is static linking. "DLL" stands for "Dynamically Linked Library", which is the opposite of static. You cannot statically link a dynamically linked library. You need a "normal" library for that.

提交回复
热议问题