Enox Software
Enox Software
opencv_xxx452.dll" is the library for OpenCV itself. opencvforunity.dll" is a library for calling OpenCV from Unity.
I have just barely ported the opencv model zoo example, so I am not that familiar with hand pose estimation. Here is the original code. https://github.com/opencv/opencv_zoo/tree/master/models/handpose_estimation_mediapipe It may be possible...
@masaruyoshimura For the open() method, it is necessary to update the backend to Videoio.CAP_FFMPEG. `//capture.open(Utils.getFilePath(VIDEO_FILENAME)); capture.open("rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mp4", Videoio.CAP_FFMPEG);`
@CoaNewco Is the Unity you used Unity 2021.2.18f1?
It is possible to receive rtsp using ffmpeg.dll, although it is Windows-only. #142
Object detection with OpenCV often uses the DNN module these days, but unfortunately, OpenCV's DNN module is not compatible with the UWP platform and cannot be used with Hololens2. Therefore,...
Thanks for the report. Even my very simple test with a blank project resulted in a crash on startup. It appears that the problem is due to the version of...
From the error details, it appears to be a bug in a previous version of the OpenCVForUnity example code. To solve this problem, use the latest version of the assets...
Thanks for the report. With the latest opencv (4.7.0) changes, the example using the ArUco class no longer works. A fixed version (1.0.7) is now available, so please try it.
I think that [FrameOptimizationExample](https://github.com/EnoxSoftware/DlibFaceLandmarkDetector/blob/master/Assets/DlibFaceLandmarkDetectorWithOpenCVExample/FrameOptimizationExample/FrameOptimizationExample.cs) or [FaceMaskExample](https://www.assetstore.unity3d.com/#!/content/79999) will be helpful. This example includes ideas for speeding up, such as resize, frame skipping using ImageOptimizationHelper class, face detection using OpenCV. the face...