OpenCVForUnity icon indicating copy to clipboard operation
OpenCVForUnity copied to clipboard

DNN module in UWP works in Free Trial version but not in Paid version

Open raulsf6 opened this issue 5 years ago • 1 comments

I need to use the DNN module in an UWP project, In the free trial it works perfectly and I managed to run the example Yolo project without any problem (I just had to change the #if !UNITY_WSA_10_0 line to #if UNITY_WSA_10_0). However, when I ported the project to the paid version, It seems that the DNN module does not exist and I can't compile the project. I read in the support that the DNN module is not supported in UWL, however, how can it work in the free trial version?

raulsf6 avatar Jan 07 '21 13:01 raulsf6

This is the correct execution result. On UnityEditor, OpenCVForUnity is run using the dll library for Windows platforms. However, if you build for a UWP platform, the dll library for the UWP platform will be used. The dll library for the UWP platform does not support the DNN module, which will cause a build error.

EnoxSoftware avatar Jan 07 '21 16:01 EnoxSoftware