Enox Software
Enox Software
Unfortunately, I am not very familiar with dnn model training and cfg files. Perhaps if you follow the general Yolov4 model training tutorials, you can train your model to work...
Does the file path contain non-ASCII characters? Currently, OpenCV does not support non-ASCII character file paths. https://github.com/opencv/opencv/issues/4292 You can set the relative file path from the project folder. ``` //cascade.load...
static void OpenCVForUnity.UnityUtils.Utils.copyFromMat< T > ( Mat mat, T [] array ) https://enoxsoftware.github.io/OpenCVForUnity/3.0.0/doc/html/class_open_c_v_for_unity_1_1_unity_utils_1_1_utils.html#ab14e60409dd3fa505da151d92e4870c0 ``` Mat mat = new Mat (3, 3, CvType.CV_8UC4, new Scalar (1, 2, 3, 4)); byte[] bytes...
https://docs.unity3d.com/ScriptReference/ImageConversion.EncodeToJPG.html ``` Utils.matToTexture2D (imgMat, texture); byte[] jpg_byte = ImageConversion.EncodeToJPG( texture); ```
Thank you for your inquiry. For now, OpenPoseExample takes more than 2000 ms to estimate human pose. Perhaps real-time processing is difficult. Regards, EnoxSoftware
As you mentioned, the human pose estimation example in our assets uses an old OpenPose model, which is very slow in its inference speed. However, by replacing the model with...
The native library included in OpenCVForUnity is built with the OPENCV_ENABLE_NONFREE flag disabled. To use the SURF algorithms, rebuild OPENCV library with OPENCV_ENABLE_NONFREE enabled. For more details, see the section...
Hmmm, I just tried the build and deploy in almost the same environment and settings as yours and it ended up fine. (My environment is Unity2018.4.28f1, VisualStudio16.7.2) I don't know...
Unfortunately, I can't think of any solution to this problem right away. If you need more sophisticated quality, we recommend that you consider using the Vuforia. https://www.vuforia.com/
The TrialVersion of OpenCVForUnity works only with UnityEditor on Windows and mac platforms. https://enoxsoftware.com/opencvforunity/get_asset/ It is not possible to build executable packages.