yeokiwi
Results
2
comments of
yeokiwi
I faced the same linking issue. I compiled opencv with contrib with visual c++ 2022. LLVM ver 14 opencv 4.6 i disabled img_hash feature but the linking still generated the...
Found the problem. img_hash was not built into opencv_world460.lib. It was built separately as opencv_img_hash460.lib. Therefore, to link properly, we had to add opencv_img_hash460.lib to OPENCV_LINK_LIBS. OPENCV_LINK_LIBS = opencv_world460,opencv_img_hash460 the...