OpenCV for use with OpenVINO (MacOS)

[MacOS 13.3.1 (Intel), NCS2]

After cloning the OpenCV repo, I noticed that there are tags which refer to OpenVINO.
As a fresh install, should I use the latest stable (4.7.0) or 4.5.5-openvino-2022.1.0?

I’m installing OpenVINO right now using the master branch, which appears to be leading to a 2023 release.
Any suggestions on how to go about this?

May be somewhere in OpenVINO™ Toolkit · GitHub or dkurt (dkurt) / Repositories · GitHub
and BuildOpenCV4OpenVINO · opencv/opencv Wiki · GitHub

I chose to go with 4.7.0 and everything is running fine, including OpenVINO master.
The only issue I had when building OpenCV was that I needed to configure CMake using -DBUILD_ZLIB=OFF, which took a while to figure out. Perhaps the build instructions could include a hint to use this setting.

Thanks!

I build opencv with openvino on windows and it works

git clone -b 2022.3.0 https://github.com/openvinotoolkit/openvino.git

https://github.com/openvinotoolkit/openvino/blob/master/docs/dev/build.md
git submodule update --init --recursive
cd ../build
mkdir openvino
cmake -G "Visual Studio 17 2022" -DCMAKE_BUILD_TYPE=Release -DENABLE_OPENCV=ON -DENABLE_INTEL_GPU=OFF -DOpenCV_DIR=/c/install/opencv -DCMAKE_INSTALL_PREFIX=/c/install/openvino /c/lib/openvino
cmake --build . --config debug
cmake --build . --config release
 cmake  --install . --config debug 
 cmake  --install . --config release