openvino: 'statistics_processor. hpp' can not find

When I compile to 98 percent, DLDT/inferenceengine/build/ie_bridges/python/SRC/openvino/tools/statistics_collector/statistics_collector_api.cxx
this file always appended an error: fatal error: statistics_processor. hpp:No such file or directory So I want to know how the header file contained in line 612 of statistics_collector_api.cxx was generated. How do I import it so that it compiles successfully? Thank you very much.

About this issue

  • Original URL
  • State: closed
  • Created 5 years ago
  • Comments: 15 (2 by maintainers)

Commits related to this issue

Most upvoted comments

Resolved by building OpenCV.

image How did you solve it ?

I commented out the statistics_processor compilation in the compiled configuration file because of its python version (1.4?)Too old… By the way, do you want to compile the DLDT library on pi4?

It seems to be a problem when building without OpenCV. My fix (which I guess only works if you have OpenCV installed): In “inference_engine/tools/CMakeLists.txt”:

-if (ENABLE_OPENCV)
+#if (ENABLE_OPENCV)
     add_subdirectory(calibration_tool/statistics_collector)
-endif()
+#endif()

Thanks for your reply. I have solved this problem, because the above documents are not compatible with my system.