Search Unity

[RELEASED] OpenCV for Unity

Discussion in 'Assets and Asset Store' started by EnoxSoftware, Oct 30, 2014.

  1. david-arcus

    david-arcus

    Joined:
    Jul 17, 2017
    Posts:
    9
  2. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    https://forum.unity.com/threads/released-dlib-facelandmark-detector.408958/page-5#post-3391534
     
    SpiderJones likes this.
  3. zhengi

    zhengi

    Joined:
    Oct 19, 2017
    Posts:
    3
    Code (CSharp):
    1.         public void OnCalibrateCameraButtonClick()
    2.         {
    3.  
    4.             Dictionary arucoDictionary = Aruco.getPredefinedDictionary(Aruco.DICT_6X6_250);
    5.             CharucoBoard charucoBoard = CharucoBoard.create(5, 7, (float) .04, (float) .02, arucoDictionary);
    6.  
    7.            
    8.             List<Mat> allCharucoCorners = new List<Mat>();
    9.             List<Mat> allCharucoIDs = new List<Mat>();
    10.             Size imageSize = new Size(640, 480);
    11.             TermCriteria termcriteria = new TermCriteria (TermCriteria.COUNT + TermCriteria.EPS,
    12.                 10, 0.05);
    13.             List<Mat> rvecs = new List<Mat> ();
    14.             List<Mat> tvecs = new List<Mat> ();
    15.             int flags = 0;
    16.            
    17.             for (float endTime = 5; endTime > 0; endTime -= Time.fixedDeltaTime)
    18.             {
    19.                 Mat grayMat = new Mat();
    20.                 Imgproc.cvtColor(webCamTextureToMatHelper.GetMat (), grayMat, Imgproc.COLOR_BGR2GRAY);
    21.                 imageSize = grayMat.size();
    22.  
    23.                 List<Mat> markerCorners = new List<Mat>();
    24.                 Mat markerIDs = new Mat();
    25.                 Aruco.detectMarkers(grayMat, arucoDictionary, markerCorners, markerIDs);
    26.  
    27.                 Mat charucoCorners = new Mat();
    28.                 Mat charucoIDs = new Mat();
    29.  
    30.  
    31.                
    32.                 if (markerCorners.Count > 0)
    33.                 {
    34.                 Aruco.interpolateCornersCharuco(markerCorners, markerIDs, grayMat, charucoBoard, charucoCorners,
    35.                         charucoIDs);
    36.  
    37.                     if (charucoCorners.height() > 3 && charucoIDs.height() > 0) {
    38.                         allCharucoCorners.Add (charucoCorners);
    39.                         allCharucoIDs.Add (charucoIDs);
    40.                     }
    41.                 }
    42.                
    43.  
    44.  
    45.             }
    46.  
    47.  
    48.             if (allCharucoCorners.Count > 0)
    49.             {
    50.  
    51.                 Aruco.calibrateCameraCharuco(allCharucoCorners, allCharucoIDs, charucoBoard, imageSize, camMatrix,
    52.                     distCoeffs, rvecs, tvecs, flags, termcriteria);  
    53.  
    54.             }
    55.  
    56.  
    57.         }
    allCharucoCorners and allCharucoIDs are nonempty and valid. After debugging, we found that the issue was the calibrateCameraCharuco() function—at that point, the application freezes.
     
  4. sticklezz

    sticklezz

    Joined:
    Oct 27, 2015
    Posts:
    33
    Have you tried making it easier to use OpenCV w. ARKit / ARCore? They would compliment each other a lot if it could be done
     
  5. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    This code works fine.
    Code (CSharp):
    1.             Texture2D imgTexture = Resources.Load ("charucoBoard") as Texture2D;
    2.             Mat rgbMat = new Mat (imgTexture.height, imgTexture.width, CvType.CV_8UC3);
    3.  
    4.             Utils.texture2DToMat (imgTexture, rgbMat);
    5.             Debug.Log ("imgMat dst ToString " + rgbMat.ToString ());
    6.  
    7.          
    8.             Mat camMatrix = new Mat (3, 3, CvType.CV_64FC1);
    9.             MatOfDouble distCoeffs = new MatOfDouble (0, 0, 0, 0);
    10.  
    11.  
    12.             Mat ids = new Mat ();
    13.             List<Mat> corners = new List<Mat> ();
    14.             List<Mat> rejected = new List<Mat> ();
    15.  
    16.             DetectorParameters detectorParams = DetectorParameters.create ();
    17.             Dictionary dictionary = Aruco.getPredefinedDictionary (dictionaryId);
    18.  
    19.  
    20.             // detect markers.
    21.             Aruco.detectMarkers (rgbMat, dictionary, corners, ids, detectorParams, rejected, camMatrix, distCoeffs);
    22.  
    23.             Debug.Log ("corners.dump() " + corners [0].dump ());
    24.             Debug.Log ("ids.dump() " + ids.dump ());
    25.             Debug.Log ("ids.ToString() " + ids.ToString ());
    26.  
    27.  
    28.             CharucoBoard charucoBoard = CharucoBoard.create (5, 7, (float)0.04f, (float)0.02f, dictionary);
    29.             Mat currentCharucoCorners = new Mat ();
    30.             Mat currentCharucoIds = new Mat ();
    31.             if (ids.total () > 0)
    32.                 Aruco.interpolateCornersCharuco (corners, ids, rgbMat, charucoBoard, currentCharucoCorners,
    33.                     currentCharucoIds);
    34.             Debug.Log ("currentCharucoCorners.dump() " + currentCharucoCorners.dump ());
    35.             Debug.Log ("currentCharucoIds.dump() " + currentCharucoIds.dump ());
    36.  
    37.             if (ids.total () > 0)
    38.                 Aruco.drawDetectedMarkers (rgbMat, corners);
    39.  
    40.             if (currentCharucoCorners.total () > 0)
    41.                 Aruco.drawDetectedCornersCharuco (rgbMat, currentCharucoCorners, currentCharucoIds, new Scalar (255, 0, 0));
    42.  
    43.             List<Mat> allCharucoCorners = new List<Mat> ();
    44.             List<Mat> allCharucoIDs = new List<Mat> ();
    45.             Size imageSize = new Size (rgbMat.cols (), rgbMat.rows ());
    46.             TermCriteria termcriteria = new TermCriteria (TermCriteria.COUNT + TermCriteria.EPS,
    47.                                             10, 0.05);
    48.             List<Mat> rvecs = new List<Mat> ();
    49.             List<Mat> tvecs = new List<Mat> ();
    50.             int flags = 0;
    51.  
    52.  
    53.             allCharucoCorners.Add (currentCharucoCorners);
    54.             allCharucoIDs.Add (currentCharucoIds);
    55.  
    56.             //add corner and ids data.
    57.             Mat currentCharucoCorner2 = currentCharucoCorners.clone ();
    58.             Mat currentCharucoIds2 = currentCharucoIds.clone ();
    59.             allCharucoCorners.Add (currentCharucoCorner2);
    60.             allCharucoIDs.Add (currentCharucoIds2);
    61.             Mat currentCharucoCorner3 = currentCharucoCorners.clone ();
    62.             Mat currentCharucoIds3 = currentCharucoIds.clone ();
    63.             allCharucoCorners.Add (currentCharucoCorner3);
    64.             allCharucoIDs.Add (currentCharucoIds3);
    65.             Mat currentCharucoCorner4 = currentCharucoCorners.clone ();
    66.             Mat currentCharucoIds4 = currentCharucoIds.clone ();
    67.             allCharucoCorners.Add (currentCharucoCorner4);
    68.             allCharucoIDs.Add (currentCharucoIds4);
    69.  
    70.             double error = Aruco.calibrateCameraCharuco (allCharucoCorners, allCharucoIDs, charucoBoard, imageSize, camMatrix, distCoeffs, rvecs, tvecs, flags, termcriteria);
    71.             Debug.Log ("error " + error);
    72.  
    73.             Debug.Log ("camMatrix " + camMatrix.dump ());
    74.             Debug.Log ("distCoeffs " + distCoeffs.dump ());
    75.  
    76.  
    77.             Texture2D texture = new Texture2D (rgbMat.cols (), rgbMat.rows (), TextureFormat.RGBA32, false);
    78.                        
    79.             Utils.matToTexture2D (rgbMat, texture);
    80.                        
    81.             gameObject.GetComponent<Renderer> ().material.mainTexture = texture;
    charucoBoard.png
    charucoBoard.PNG
     
  6. Deleted User

    Deleted User

    Guest

    I am trying to import "trial-opencv-plus-unity-1.7.1.unitypackage" in unity 5.5.1f1. Unfortunately trapped in issues like :

    "Assets/OpenCV+Unity/Assets/Scripts/OpenCvSharp/modules/core/Mat/MatOfRect.cs(461,23): error CS0227: Unsafe code requires the `unsafe' command line option to be specified"

    Can anyone out there please help me in getting this resolved.

    Troubleshooting already performed:

    1) Created 2 files named gmcs.rsp and smcs.rsp with content "-unsafe" in them and placed both within Assets folder but this does'nt seem to help

    2) Trying to open properties of project in Visual Studio by right clicking on it but the desired window (Property window) is not popping up.
     
  7. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    I have not tried combining OpenCVforUnity and ARKit / ARCore yet.
     
  8. sdf124

    sdf124

    Joined:
    Mar 4, 2016
    Posts:
    8
    Hi,

    I am using Unity 2017.3 and when I exported the example scene (WebcamTexturetoMat) onto iOS, the resolution of the webcamtexture is 480x640. How do I ensure that the texture fits the entire screen?
     
  9. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    This forum is for "OpenCV for Unity".
     
  10. Deleted User

    Deleted User

    Guest


    I downloaded OpenCV trial as mentioned above ("trial-opencv-plus-unity-1.7.1.unitypackage") coz i wanted to use Tensorflow + Yolo detection as demonstarted in your videos in my app. So before purchasing i wanted to check how it really works.

    I have used "opencv_plus_unity_android_extended.apk" and it works great but i need to implement far more functionalities in my app. So i really wanted to get a hang around your OpenCV package/library to implement it in my app.
     
  11. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    Please change Camera.main.orthographicSize.
    Code (CSharp):
    1.             float widthScale = (float)Screen.width / width;
    2.             float heightScale = (float)Screen.height / height;
    3.             if (widthScale < heightScale) {
    4. //                Camera.main.orthographicSize = (width * (float)Screen.height / (float)Screen.width) / 2;
    5.                 Camera.main.orthographicSize = height / 2;
    6.             } else {
    7. //                Camera.main.orthographicSize = height / 2;
    8.                 Camera.main.orthographicSize = (width * (float)Screen.height / (float)Screen.width) / 2;
    9.             }
     
  12. Avani22

    Avani22

    Joined:
    Sep 2, 2017
    Posts:
    3
    I am working on SVM image classifier using OpenCVForUnity version 2.1.3. The svm model is not getting trained even if the training data and labels are correct. The train function works well on training data as numbers but for images it doesn't.
    Eg.:
    svm.train(trainData, Ml.ROW_SAMPLE, trainLabels);
    where trainData and trainLabels is a mat of 1*155 (155 images for training).
     
  13. dpizzle

    dpizzle

    Joined:
    Feb 2, 2013
    Posts:
    31
    I'm seeing the same error as here: https://forum.unity.com/threads/released-opencv-for-unity.277080/page-30#post-3367461

    It's when I'm building an AdHoc build (and probably app store too, but haven't tested). Testing directly to device works fine. I tried the removing architectures script but didnt work. Looks like the error occurs on the App Thinning check.

    XCode 9.2
    Happens on both Unity 2017.3 or 2017.2
    OpenCVForUnity 2.2.6

    Update: I reverted to a previous version of OpenCVForUnity and it's working now. I noticed it did not have the framework emedded in the build phases inside Xcode this time. Might be related, not sure.
     
    Last edited: Feb 20, 2018
  14. Joy0023

    Joy0023

    Joined:
    Oct 30, 2017
    Posts:
    4
    Hello, I've a problem:
    I was trying to use the videoWriter.cs but when I start Recording it take 1 second (in this time Rec text turn red and back black) and automaticalli stop record. if I try to play it with button it saya this error:

    capture.isOpened() is false.
    UnityEngine.Debug:LogError(Object)
    OpenCVForUnitySample.VideoWriterExample:playVideo(String) (at Assets/Sand_Tiger/VideoWriterExample.cs:221)
    OpenCVForUnitySample.VideoWriterExample:OnPlayButtonClick() (at Assets/Sand_Tiger/VideoWriterExample.cs:317)
    UnityEngine.EventSystems.EventSystem:Update()

    Any Idea to Fix it?
    THX!
     
  15. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    https://github.com/flutter/flutter/issues/13070
    https://stackoverflow.com/questions...tion-nomethoderror-undefined-method-toolspath
    There is a possibility of a bug of Xcode 9.2. Please click Next before an error occurs.
    HsLIp.png
     
  16. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    Could you tell me about your test environment?
    OpenCV for Unity version :
    Unity version :
    Build Platform :
     
  17. alexchandriyaa

    alexchandriyaa

    Joined:
    Jan 18, 2017
    Posts:
    140
    @EnoxSoftware whether this open CV has the feature of saving real time tracking?? if so how it is processed??
     
    Last edited: Feb 22, 2018
  18. tahirjaved

    tahirjaved

    Joined:
    Nov 23, 2017
    Posts:
    2
    Hi,

    I'm unable to initialize & open camera on Android devices
    I've tried following:

    VideoCapture capture = new VideoCapture();
    capture.open(0, CAP_ANDROID);

    but it doesn't work. I've also tried using just 1000 instead of CAP_ANDROID and using just camera index 0 or 1 but none work. capture.open(0) works fine on windows machine.

    Any ideas what I'm doing wrong?

    Many thanks in advance!
     
  19. r3nder

    r3nder

    Joined:
    Jun 12, 2015
    Posts:
    1
    Hello, i having a bit of a trouble with Dlibfacelandmark, I tried runnign the example ArHeadExample, but i get this errors.
    I'm using windows 10, latest OpenCV and Dlibfacelandmark from assetStore and Unity 2017.3.0f3

    First i get this one
    "Failed to load
    UnityEngine.Debug:LogError(Object)
    DlibFaceLandmarkDetector.FaceLandmarkDetector:.ctor(String) (at Assets/DlibFaceLandmarkDetector/Scripts/FaceLandmarkDetector.cs:63)
    DlibFaceLandmarkDetectorExample.ARHeadExample:Run() (at Assets/DlibFaceLandmarkDetectorWithOpenCVExample/ARHeadExample/ARHeadExample.cs:227)
    DlibFaceLandmarkDetectorExample.ARHeadExample:Start() (at Assets/DlibFaceLandmarkDetectorWithOpenCVExample/ARHeadExample/ARHeadExample.cs:208)"

    And secondly i get this one when detecting a face and the webcam freezes
    ArgumentOutOfRangeException: Argument is out of range.
    Parameter name: index
    System.Collections.Generic.List`1[UnityEngine.Vector2].get_Item (Int32 index) (at /Users/builduser/buildslave/mono/build/mcs/class/corlib/System.Collections.Generic/List.cs:633)
    DlibFaceLandmarkDetectorExample.ARHeadExample.Update () (at Assets/DlibFaceLandmarkDetectorWithOpenCVExample/ARHeadExample/ARHeadExample.cs:382)
     
  20. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    Since this asset is a clone of OpenCV Java, you are able to use the same API as OpenCV Java.
    https://docs.opencv.org/java/3.1.0/
    http://enoxsoftware.github.io/OpenCVForUnity/3.0.0/doc/html/index.html
    If there is implementation example using "OpenCV Java", I think that it can be implemented even using "OpenCV for Unity".

    Many examples are included with OpenCVforUnity.
    FaceDetectionWebCamTextureExample
    https://github.com/EnoxSoftware/Ope...nExample/FaceDetectionWebCamTextureExample.cs
    CamShiftExample
    https://github.com/EnoxSoftware/Ope...ules/video/CamShiftExample/CamShiftExample.cs
    VideoWriterExample
    https://github.com/EnoxSoftware/Ope...eoio/VideoWriterExample/VideoWriterExample.cs
     
  21. tahirjaved

    tahirjaved

    Joined:
    Nov 23, 2017
    Posts:
    2
    @EnoxSoftware
    All the examples of VideoCapture show how to open a video file, which I have tested and works fine.
    But there is no example of capturing video from Android device camera.
    This is such a basic thing it must be possible.

    According to the API and OpenCV documentation this should work:

    VideoCapture capture = new VideoCapture();
    capture.open(0, CAP_ANDROID);

    but it doesn't.
    I've tried so far with 3 separate Android devices, 2 Samsung phones and 1 Tablet, running Android 5.1 to Android 7.0

    Any help will be HIGHLY appreciated!
     
  22. Sithdown

    Sithdown

    Joined:
    Aug 8, 2014
    Posts:
    10
    I think last EnoxSoftware's post has a good example of capturing video:

    VideoWriterExample
    https://github.com/EnoxSoftware/Ope...eoio/VideoWriterExample/VideoWriterExample.cs
     
  23. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    VideoCapture (int index) and open (int index) method is not supported on Android Platform.
    https://enoxsoftware.com/opencvforunity/documentation/support-modules/
    https://github.com/opencv/opencv/bl...include/opencv2/videoio/videoio_c.h#L109-L111
     
  24. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    You may not have completed the setup procedure.
    Please move the “DlibFaceLandmarkDetector/StreamingAssets/sp_human_face_68.dat” to the “Assets/StreamingAssets/” folder.
    unnamed.png
     
  25. sdf124

    sdf124

    Joined:
    Mar 4, 2016
    Posts:
    8
    Hi Enox,

    When I place 2D sprites (such as ears) in ARObjects inside the ARHeadExample scene, there is a lot of jitter and shakiness. Is there a way to reduce this? I am trying to create something similar to Snapchat filters.
     
    Last edited: Feb 24, 2018
  26. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
  27. sdf124

    sdf124

    Joined:
    Mar 4, 2016
    Posts:
    8
  28. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    Please place the 3dobject you want to display in the child of ARObject.
    facetracker_ar_2.PNG
     
  29. sdf124

    sdf124

    Joined:
    Mar 4, 2016
    Posts:
    8
    How would I implement this with the Kalman Filter and Optical Flow technique in order to make the ARHead more stable and less jittery?
     
  30. Ecocide

    Ecocide

    Joined:
    Aug 4, 2011
    Posts:
    293
    Hi,

    today I purchased OpenCV and tested the FaceTracking example. Unfortunately I could not find a method to get the current yaw orientation of the tracked face. Is this possible?
     
  31. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
  32. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    Please get the parameters of ARObject.
    Code (CSharp):
    1. ARGameObject.transform.localRotation.y
    ar_face_rotation.PNG
     
  33. Westerby

    Westerby

    Joined:
    Jun 20, 2017
    Posts:
    8
    @EnoxSoftware
    Hello,

    does VideoCapture class allow to pass an URL as a source of video? It is generally possible in other bindings of OpenCV, but I couldn't get it working in OpenCV for Unity.

    I'm getting false for this:

    Code (CSharp):
    1. capture = OpenCVForUnity.VideoCapture ("url");
    2. capture.grab ();
    3. capture.retrieve (frame, 0);
    4. Debug.Log(capture.isOpened());
     
  34. Ecocide

    Ecocide

    Joined:
    Aug 4, 2011
    Posts:
    293
    Thank you. Well, it does not work very well if it exceeds a certain degree. Too bad :-(
     
  35. zhengi

    zhengi

    Joined:
    Oct 19, 2017
    Posts:
    3
    @EnoxSoftware

    Hi,

    I tried your code for Aruco camera calibration, and it almost seems to work, except for one error I keep getting. I've tried lots of debugging and looking in the source code, but I haven't been able to fix the problem.

    This is the error message:
    Code (CSharp):
    1. CvException: CvType.CV_32SC2 != m.type() ||  m.cols()!=1
    2. Mat [ 0*0*CV_8UC1, isCont=False, isSubmat=False, nativeObj=0x105553137985056, dataAddr=0x0 ]
    3. OpenCVForUnity.Converters.Mat_to_vector_Mat (OpenCVForUnity.Mat m, System.Collections.Generic.List`1 mats) (at Assets/OpenCVForUnity/org/opencv/utils/Converters.cs:331)
    4. OpenCVForUnity.Aruco.calibrateCameraCharuco (System.Collections.Generic.List`1 charucoCorners, System.Collections.Generic.List`1 charucoIds, OpenCVForUnity.CharucoBoard board, OpenCVForUnity.Size imageSize, OpenCVForUnity.Mat cameraMatrix, OpenCVForUnity.Mat distCoeffs, System.Collections.Generic.List`1 rvecs, System.Collections.Generic.List`1 tvecs, Int32 flags, OpenCVForUnity.TermCriteria criteria) (at Assets/OpenCVForUnity/org/opencv_contrib/aruco/Aruco.cs:380)
    5. ArucoTracking.ArUcoTracker.calibrateCamera () (at Assets/ArucoTracking/ArUcoTracker.cs:566)
    6. ArucoTracking.ArUcoTracker.Update () (at Assets/ArucoTracking/ArUcoTracker.cs:348)
    7.  
    And this is the code that I'm getting it on:
    Code (CSharp):
    1.                 double error = Aruco.calibrateCameraCharuco (allCharucoCorners, allCharucoIDs, charucoBoard, imageSize, camMatrix, distCoeffs, rvecsCalibration, tvecsCalibration, flags, calibTermCriteria);
    2.  
    The problem appears to be with the rvecs and tvecs data structures, so here's how I instantiate them:
    Code (CSharp):
    1. List<Mat> () rvecsCalibration = new List<Mat> ();
    2. List<Mat> () tvecsCalibration = new List<Mat> ();
    Do you have any idea what might be the problem?

    Thanks!
     
  36. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    Unfortunately, streaming video playback is supported only on Windows.
    Please set ffmpeg.dll like the following post.
    https://forum.unity.com/threads/released-opencv-for-unity.277080/page-30#post-3350257
     
  37. rafaelsistrade

    rafaelsistrade

    Joined:
    Jan 29, 2018
    Posts:
    68
    Hello, EnoxSoftware
    This plugin can be used in multiple projects, with only one purchase?

    Best regards, Rafael Pereira.
     
  38. sushanta1991

    sushanta1991

    Joined:
    Apr 3, 2011
    Posts:
    305
    Hi, I want to remove the background from a live video, is it possible with this plugin?
     
  39. MaxXR

    MaxXR

    Joined:
    Jun 18, 2017
    Posts:
    67
    Hi
    Just tried – want to get comic shader running on ARKit to see if i can get an effect like


    When I load both plugins I get the following errors (both plugins obs work great solo). How can I resolve this?


    Assets/OpenCVForUnity/Examples/Advanced/ComicFilterExample/ComicFilterExample.cs(196,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Advanced/ComicFilterExample/ComicFilterExample.cs Line: 196)

    Assets/OpenCVForUnity/Examples/Advanced/GreenScreenExample/GreenScreenExample.cs(167,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Advanced/GreenScreenExample/GreenScreenExample.cs Line: 167)

    Assets/OpenCVForUnity/Examples/Advanced/GreenScreenExample/GreenScreenExample.cs(202,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Advanced/GreenScreenExample/GreenScreenExample.cs Line: 202)

    Assets/OpenCVForUnity/Examples/Advanced/HandPoseEstimationExample/HandPoseEstimationExample.cs(193,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Advanced/HandPoseEstimationExample/HandPoseEstimationExample.cs Line: 193)

    Assets/OpenCVForUnity/Examples/Advanced/MultiObjectTrackingBasedOnColorExample/MultiObjectTrackingBasedOnColorExample.cs(163,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Advanced/MultiObjectTrackingBasedOnColorExample/MultiObjectTrackingBasedOnColorExample.cs Line: 163)

    Assets/OpenCVForUnity/Examples/Advanced/PolygonFilterExample/PolygonFilterExample.cs(185,23): error CS0234: The type or namespace name `copyFromMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Advanced/PolygonFilterExample/PolygonFilterExample.cs Line: 185)

    Assets/OpenCVForUnity/Examples/Advanced/PolygonFilterExample/PolygonFilterExample.cs(272,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Advanced/PolygonFilterExample/PolygonFilterExample.cs Line: 272)

    Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(21,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs Line: 21)

    Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(28,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs Line: 28)

    Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(33,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs Line: 33)

    Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(38,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs Line: 38)

    Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatExample/WebCamTextureToMatExample.cs(231,23): error CS0234: The type or namespace name `webCamTextureToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatExample/WebCamTextureToMatExample.cs Line: 231)

    Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatExample/WebCamTextureToMatExample.cs(235,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatExample/WebCamTextureToMatExample.cs Line: 235)

    Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatHelperExample/WebCamTextureToMatHelperExample.cs(103,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatHelperExample/WebCamTextureToMatHelperExample.cs Line: 103)

    Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoCreateMarkerExample.cs(49,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoCreateMarkerExample.cs Line: 49)

    Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoExample.cs(65,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoExample.cs Line: 65)

    Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoExample.cs(235,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoExample.cs Line: 235)

    Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoWebCamTextureExample.cs(377,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoWebCamTextureExample.cs Line: 377)

    Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(36,44): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs Line: 36)

    Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(37,44): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs Line: 37)

    Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(38,49): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs Line: 38)

    Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(121,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs Line: 121)

    Assets/OpenCVForUnity/Examples/ContribModules/plot/PlotExample/PlotExample.cs(36,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/plot/PlotExample/PlotExample.cs Line: 36)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(38,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 38)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(39,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 39)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(40,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 40)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(75,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 75)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(131,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 131)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(136,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 136)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(42,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 42)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(43,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 43)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(44,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 44)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(45,59): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 45)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(49,59): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 49)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(96,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 96)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(191,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 191)

    Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(206,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 206)

    Assets/OpenCVForUnity/Examples/ContribModules/tracking/TrackingExample/TrackingExample.cs(80,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/tracking/TrackingExample/TrackingExample.cs Line: 80)

    Assets/OpenCVForUnity/Examples/ContribModules/tracking/TrackingExample/TrackingExample.cs(174,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/ContribModules/tracking/TrackingExample/TrackingExample.cs Line: 174)

    Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs(26,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs Line: 26)

    Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs(27,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs Line: 27)

    Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs(50,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs Line: 50)

    Assets/OpenCVForUnity/Examples/MainModules/core/PCAExample/PCAExample.cs(39,44): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/core/PCAExample/PCAExample.cs Line: 39)

    Assets/OpenCVForUnity/Examples/MainModules/core/PCAExample/PCAExample.cs(106,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/core/PCAExample/PCAExample.cs Line: 106)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(38,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 38)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(41,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 41)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(53,43): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 53)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(54,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 54)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(135,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 135)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(140,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 140)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(65,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs Line: 65)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(67,43): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs Line: 67)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(68,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs Line: 68)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(193,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs Line: 193)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(209,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs Line: 209)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(50,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs Line: 50)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(52,43): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs Line: 52)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(53,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs Line: 53)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(178,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs Line: 178)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(192,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs Line: 192)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(57,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs Line: 57)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(60,52): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs Line: 60)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(66,45): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs Line: 66)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(159,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs Line: 159)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(175,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs Line: 175)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(30,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 30)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(33,61): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 33)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(41,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 41)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(50,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 50)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(51,40): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 51)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(154,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 154)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(159,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 159)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(70,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 70)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(72,48): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 72)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(79,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 79)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(80,40): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 80)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(251,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 251)

    Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(269,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 269)

    Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs Line: 24)

    Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs(28,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs Line: 28)

    Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs(70,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs Line: 70)

    Assets/OpenCVForUnity/Examples/MainModules/features2d/MSERExample/MSERExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/MSERExample/MSERExample.cs Line: 25)

    Assets/OpenCVForUnity/Examples/MainModules/features2d/MSERExample/MSERExample.cs(45,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/MSERExample/MSERExample.cs Line: 45)

    Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs(38,45): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs Line: 38)

    Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs(49,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs Line: 49)

    Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs(67,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs Line: 67)

    Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(39,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 39)

    Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(46,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 46)

    Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(51,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 51)

    Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(56,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 56)

    Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(72,23): error CS0234: The type or namespace name `textureToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 72)

    Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(73,23): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 73)

    Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(125,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 125)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/CircleDetectionExample/CircleDetectionExample.cs(117,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/CircleDetectionExample/CircleDetectionExample.cs Line: 117)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConnectedComponentsExample/ConnectedComponentsExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConnectedComponentsExample/ConnectedComponentsExample.cs Line: 25)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConnectedComponentsExample/ConnectedComponentsExample.cs(90,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConnectedComponentsExample/ConnectedComponentsExample.cs Line: 90)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConvexHullExample/ConvexHullExample.cs(59,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConvexHullExample/ConvexHullExample.cs Line: 59)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/DrawingExample/DrawingExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/DrawingExample/DrawingExample.cs Line: 24)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/DrawingExample/DrawingExample.cs(65,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/DrawingExample/DrawingExample.cs Line: 65)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs Line: 25)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs(32,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs Line: 32)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs(56,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs Line: 56)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/HoughLinesPExample/HoughLinesPExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/HoughLinesPExample/HoughLinesPExample.cs Line: 25)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/HoughLinesPExample/HoughLinesPExample.cs(50,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/HoughLinesPExample/HoughLinesPExample.cs Line: 50)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs(23,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs Line: 23)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs(30,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs Line: 30)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs(63,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs Line: 63)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs Line: 25)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs(26,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs Line: 26)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs(53,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs Line: 53)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/ThresholdExample/ThresholdExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/ThresholdExample/ThresholdExample.cs Line: 25)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/ThresholdExample/ThresholdExample.cs(33,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/ThresholdExample/ThresholdExample.cs Line: 33)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/WrapPerspectiveExample/WrapPerspectiveExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/WrapPerspectiveExample/WrapPerspectiveExample.cs Line: 24)

    Assets/OpenCVForUnity/Examples/MainModules/imgproc/WrapPerspectiveExample/WrapPerspectiveExample.cs(46,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/WrapPerspectiveExample/WrapPerspectiveExample.cs Line: 46)

    Assets/OpenCVForUnity/Examples/MainModules/ml/SVMExample/SVMExample.cs(76,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/ml/SVMExample/SVMExample.cs Line: 76)

    Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs(147,57): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs Line: 147)

    Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs(148,62): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs Line: 148)

    Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs(360,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs Line: 360)

    Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs(50,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs Line: 50)

    Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs(66,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs Line: 66)

    Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs(91,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs Line: 91)

    Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionWebCamTextureExample.cs(71,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionWebCamTextureExample.cs Line: 71)

    Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionWebCamTextureExample.cs(165,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionWebCamTextureExample.cs Line: 165)

    Assets/OpenCVForUnity/Examples/MainModules/objdetect/HOGDescriptorExample/HOGDescriptorExample.cs(63,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/HOGDescriptorExample/HOGDescriptorExample.cs Line: 63)

    Assets/OpenCVForUnity/Examples/MainModules/objdetect/HOGDescriptorExample/HOGDescriptorExample.cs(139,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/HOGDescriptorExample/HOGDescriptorExample.cs Line: 139)

    Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs Line: 25)

    Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs(32,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs Line: 32)

    Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs(43,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs Line: 43)

    Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs Line: 24)

    Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs Line: 25)

    Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs(39,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs Line: 39)

    Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(21,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs Line: 21)

    Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(27,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs Line: 27)

    Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(99,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs Line: 99)

    Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(104,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs Line: 104)

    Assets/OpenCVForUnity/Examples/MainModules/video/BackgroundSubtractorMOG2Example/BackgroundSubtractorMOG2Example.cs(124,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/video/BackgroundSubtractorMOG2Example/BackgroundSubtractorMOG2Example.cs Line: 124)

    Assets/OpenCVForUnity/Examples/MainModules/video/CamShiftExample/CamShiftExample.cs(241,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/video/CamShiftExample/CamShiftExample.cs Line: 241)

    Assets/OpenCVForUnity/Examples/MainModules/video/OpticalFlowExample/OpticalFlowExample.cs(243,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/video/OpticalFlowExample/OpticalFlowExample.cs Line: 243)

    Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoCaptureExample/VideoCaptureExample.cs(59,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoCaptureExample/VideoCaptureExample.cs Line: 59)

    Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoCaptureExample/VideoCaptureExample.cs(118,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoCaptureExample/VideoCaptureExample.cs Line: 118)

    Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs(116,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs Line: 116)

    Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs(120,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs Line: 120)

    Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs(144,27): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs Line: 144)

    Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs(166,23): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?

    (Filename: Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs Line: 166)

    Assets/OpenCVForUnity/Examples/WebCamTextureToMatHelper.cs(412,19): error CS0234: The type or namespace name `webCamTextureToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
     
  40. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    Currently, I am creating an example of Aruco.calibrateCameraCharuco () + WebCamTexture.
    Please wait a while.
     
  41. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    Of course you can use OpenCV for Unity in multiple projects.
     
  42. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
  43. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    Please refer to this issue.
    https://bitbucket.org/Unity-Technol...issues/2/change-utils-namespace-to-arkitutils
     
  44. MaxXR

    MaxXR

    Joined:
    Jun 18, 2017
    Posts:
    67
    Hi
    Thanks for the link. I tried the same approach, replacing 'Utils' in all ARKit scripts with 'ARKitUtils' however it's not fixing the issue. Seems that workaround is for outdated version of ARKit as the files and folder structure is different to latest version. Any guidance on how I resolve this because i'm trying to get it working?

    Many thanks for your help

    Errors after changing 'Utils' with 'ARKitUtils':
    Code (CSharp):
    1. -----CompilerOutput:-stderr----------
    2. Assets/OpenCVForUnity/Examples/Advanced/ComicFilterExample/ComicFilterExample.cs(196,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    3. Assets/OpenCVForUnity/Examples/Advanced/GreenScreenExample/GreenScreenExample.cs(167,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    4. Assets/OpenCVForUnity/Examples/Advanced/GreenScreenExample/GreenScreenExample.cs(202,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    5. Assets/OpenCVForUnity/Examples/Advanced/HandPoseEstimationExample/HandPoseEstimationExample.cs(193,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    6. Assets/OpenCVForUnity/Examples/Advanced/MultiObjectTrackingBasedOnColorExample/MultiObjectTrackingBasedOnColorExample.cs(163,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    7. Assets/OpenCVForUnity/Examples/Advanced/PolygonFilterExample/PolygonFilterExample.cs(185,23): error CS0234: The type or namespace name `copyFromMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    8. Assets/OpenCVForUnity/Examples/Advanced/PolygonFilterExample/PolygonFilterExample.cs(272,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    9. Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(21,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    10. Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(28,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    11. Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(33,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    12. Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(38,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    13. Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatExample/WebCamTextureToMatExample.cs(231,23): error CS0234: The type or namespace name `webCamTextureToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    14. Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatExample/WebCamTextureToMatExample.cs(235,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    15. Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatHelperExample/WebCamTextureToMatHelperExample.cs(103,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    16. Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoCreateMarkerExample.cs(49,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    17. Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoExample.cs(65,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    18. Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoExample.cs(235,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    19. Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoWebCamTextureExample.cs(377,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    20. Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(36,44): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    21. Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(37,44): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    22. Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(38,49): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    23. Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(121,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    24. Assets/OpenCVForUnity/Examples/ContribModules/plot/PlotExample/PlotExample.cs(36,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    25. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(38,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    26. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(39,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    27. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(40,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    28. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(75,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    29. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(131,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    30. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(136,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    31. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(42,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    32. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(43,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    33. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(44,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    34. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(45,59): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    35. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(49,59): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    36. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(96,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    37. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(191,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    38. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(206,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    39. Assets/OpenCVForUnity/Examples/ContribModules/tracking/TrackingExample/TrackingExample.cs(80,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    40. Assets/OpenCVForUnity/Examples/ContribModules/tracking/TrackingExample/TrackingExample.cs(174,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    41. Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs(26,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    42. Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs(27,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    43. Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs(50,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    44. Assets/OpenCVForUnity/Examples/MainModules/core/PCAExample/PCAExample.cs(39,44): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    45. Assets/OpenCVForUnity/Examples/MainModules/core/PCAExample/PCAExample.cs(106,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    46. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(38,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    47. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(41,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    48. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(53,43): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    49. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(54,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    50. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(135,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    51. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(140,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    52. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(65,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    53. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(67,43): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    54. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(68,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    55. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(193,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    56. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(209,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    57. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(50,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    58. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(52,43): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    59. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(53,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    60. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(178,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    61. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(192,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    62. Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(57,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    63. Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(60,52): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    64. Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(66,45): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    65. Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(159,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    66. Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(175,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    67. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(30,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    68. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(33,61): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    69. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(41,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    70. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(50,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    71. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(51,40): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    72. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(154,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    73. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(159,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    74. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(70,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    75. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(72,48): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    76. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(79,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    77. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(80,40): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    78. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(251,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    79. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(269,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    80. Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    81. Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs(28,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    82. Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs(70,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    83. Assets/OpenCVForUnity/Examples/MainModules/features2d/MSERExample/MSERExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    84. Assets/OpenCVForUnity/Examples/MainModules/features2d/MSERExample/MSERExample.cs(45,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    85. Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs(38,45): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    86. Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs(49,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    87. Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs(67,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    88. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(39,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    89. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(46,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    90. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(51,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    91. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(56,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    92. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(72,23): error CS0234: The type or namespace name `textureToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    93. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(73,23): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    94. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(125,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    95. Assets/OpenCVForUnity/Examples/MainModules/imgproc/CircleDetectionExample/CircleDetectionExample.cs(117,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    96. Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConnectedComponentsExample/ConnectedComponentsExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    97. Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConnectedComponentsExample/ConnectedComponentsExample.cs(90,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    98. Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConvexHullExample/ConvexHullExample.cs(59,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    99. Assets/OpenCVForUnity/Examples/MainModules/imgproc/DrawingExample/DrawingExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    100. Assets/OpenCVForUnity/Examples/MainModules/imgproc/DrawingExample/DrawingExample.cs(65,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    101. Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    102. Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs(32,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    103. Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs(56,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    104. Assets/OpenCVForUnity/Examples/MainModules/imgproc/HoughLinesPExample/HoughLinesPExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    105. Assets/OpenCVForUnity/Examples/MainModules/imgproc/HoughLinesPExample/HoughLinesPExample.cs(50,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    106. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs(23,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    107. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs(30,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    108. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs(63,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    109. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    110. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs(26,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    111. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs(53,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    112. Assets/OpenCVForUnity/Examples/MainModules/imgproc/ThresholdExample/ThresholdExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    113. Assets/OpenCVForUnity/Examples/MainModules/imgproc/ThresholdExample/ThresholdExample.cs(33,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    114. Assets/OpenCVForUnity/Examples/MainModules/imgproc/WrapPerspectiveExample/WrapPerspectiveExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    115. Assets/OpenCVForUnity/Examples/MainModules/imgproc/WrapPerspectiveExample/WrapPerspectiveExample.cs(46,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    116. Assets/OpenCVForUnity/Examples/MainModules/ml/SVMExample/SVMExample.cs(76,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    117. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs(147,57): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    118. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs(148,62): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    119. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs(360,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    120. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs(50,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    121. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs(66,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    122. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs(91,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    123. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionWebCamTextureExample.cs(71,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    124. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionWebCamTextureExample.cs(165,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    125. Assets/OpenCVForUnity/Examples/MainModules/objdetect/HOGDescriptorExample/HOGDescriptorExample.cs(63,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    126. Assets/OpenCVForUnity/Examples/MainModules/objdetect/HOGDescriptorExample/HOGDescriptorExample.cs(139,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    127. Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    128. Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs(32,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    129. Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs(43,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    130. Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    131. Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    132. Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs(39,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    133. Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(21,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    134. Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(27,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    135. Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(99,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    136. Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(104,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    137. Assets/OpenCVForUnity/Examples/MainModules/video/BackgroundSubtractorMOG2Example/BackgroundSubtractorMOG2Example.cs(124,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    138. Assets/OpenCVForUnity/Examples/MainModules/video/CamShiftExample/CamShiftExample.cs(241,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    139. Assets/OpenCVForUnity/Examples/MainModules/video/OpticalFlowExample/OpticalFlowExample.cs(243,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    140. Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoCaptureExample/VideoCaptureExample.cs(59,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    141. Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoCaptureExample/VideoCaptureExample.cs(118,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    142. Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs(116,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    143. Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs(120,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    144. Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs(144,27): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    145. Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs(166,23): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    146. Assets/OpenCVForUnity/Examples/WebCamTextureToMatHelper.cs(412,19): error CS0234: The type or namespace name `webCamTextureToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    147. Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs(121,51): error CS1061: Type `byte[]' does not contain a definition for `Deserialize' and no extension method `Deserialize' of type `byte[]' could be found. Are you missing `Utils' using directive?
    148. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    149. Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs(134,59): error CS1061: Type `byte[]' does not contain a definition for `Deserialize' and no extension method `Deserialize' of type `byte[]' could be found. Are you missing `Utils' using directive?
    150. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    151. Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs(142,59): error CS1061: Type `byte[]' does not contain a definition for `Deserialize' and no extension method `Deserialize' of type `byte[]' could be found. Are you missing `Utils' using directive?
    152. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    153. Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs(150,59): error CS1061: Type `byte[]' does not contain a definition for `Deserialize' and no extension method `Deserialize' of type `byte[]' could be found. Are you missing `Utils' using directive?
    154. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    155. Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs(204,44): error CS1061: Type `object' does not contain a definition for `SerializeToByteArray' and no extension method `SerializeToByteArray' of type `object' could be found. Are you missing `Utils' using directive?
    156. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    157. Assets/UnityARKitPlugin/ARKitRemote/ARKitRemoteConnection.cs(123,51): error CS1061: Type `byte[]' does not contain a definition for `Deserialize' and no extension method `Deserialize' of type `byte[]' could be found. Are you missing `Utils' using directive?
    158. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    159. Assets/UnityARKitPlugin/ARKitRemote/ARKitRemoteConnection.cs(136,61): error CS1061: Type `byte[]' does not contain a definition for `Deserialize' and no extension method `Deserialize' of type `byte[]' could be found. Are you missing `Utils' using directive?
    160. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    161. Assets/UnityARKitPlugin/ARKitRemote/ARKitRemoteConnection.cs(144,61): error CS1061: Type `byte[]' does not contain a definition for `Deserialize' and no extension method `Deserialize' of type `byte[]' could be found. Are you missing `Utils' using directive?
    162. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    163. Assets/UnityARKitPlugin/ARKitRemote/ARKitRemoteConnection.cs(152,61): error CS1061: Type `byte[]' does not contain a definition for `Deserialize' and no extension method `Deserialize' of type `byte[]' could be found. Are you missing `Utils' using directive?
    164. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    165. Assets/UnityARKitPlugin/ARKitRemote/ARKitRemoteConnection.cs(203,44): error CS1061: Type `object' does not contain a definition for `SerializeToByteArray' and no extension method `SerializeToByteArray' of type `object' could be found. Are you missing `Utils' using directive?
    166. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    167. Assets/UnityARKitPlugin/ARKitRemote/ConnectToEditor.cs(39,50): error CS1061: Type `byte[]' does not contain a definition for `Deserialize' and no extension method `Deserialize' of type `byte[]' could be found. Are you missing `Utils' using directive?
    168. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    169. Assets/UnityARKitPlugin/ARKitRemote/ConnectToEditor.cs(165,44): error CS1061: Type `object' does not contain a definition for `SerializeToByteArray' and no extension method `SerializeToByteArray' of type `object' could be found. Are you missing `Utils' using directive?
    170. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    171. Assets/UnityARKitPlugin/ARKitRemote/SerializableObjects.cs(398,37): error CS1061: Type `byte[]' does not contain a definition for `Deserialize' and no extension method `Deserialize' of type `byte[]' could be found. Are you missing `Utils' using directive?
    172. /Applications/Unity2017.3/Unity.app/Contents/MonoBleedingEdge/lib/mono/unity/mscorlib.dll (Location of the symbol related to previous error)
    173. -----EndCompilerOutput---------------
    174. - Finished compile Library/ScriptAssemblies/Assembly-CSharp.dll
    175. Assets/OpenCVForUnity/Examples/Advanced/ComicFilterExample/ComicFilterExample.cs(196,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    176. (Filename: Assets/OpenCVForUnity/Examples/Advanced/ComicFilterExample/ComicFilterExample.cs Line: 196)
    177.  
    178. Assets/OpenCVForUnity/Examples/Advanced/GreenScreenExample/GreenScreenExample.cs(167,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    179. (Filename: Assets/OpenCVForUnity/Examples/Advanced/GreenScreenExample/GreenScreenExample.cs Line: 167)
    180.  
    181. Assets/OpenCVForUnity/Examples/Advanced/GreenScreenExample/GreenScreenExample.cs(202,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    182. (Filename: Assets/OpenCVForUnity/Examples/Advanced/GreenScreenExample/GreenScreenExample.cs Line: 202)
    183.  
    184. Assets/OpenCVForUnity/Examples/Advanced/HandPoseEstimationExample/HandPoseEstimationExample.cs(193,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    185. (Filename: Assets/OpenCVForUnity/Examples/Advanced/HandPoseEstimationExample/HandPoseEstimationExample.cs Line: 193)
    186.  
    187. Assets/OpenCVForUnity/Examples/Advanced/MultiObjectTrackingBasedOnColorExample/MultiObjectTrackingBasedOnColorExample.cs(163,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    188. (Filename: Assets/OpenCVForUnity/Examples/Advanced/MultiObjectTrackingBasedOnColorExample/MultiObjectTrackingBasedOnColorExample.cs Line: 163)
    189.  
    190. Assets/OpenCVForUnity/Examples/Advanced/PolygonFilterExample/PolygonFilterExample.cs(185,23): error CS0234: The type or namespace name `copyFromMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    191. (Filename: Assets/OpenCVForUnity/Examples/Advanced/PolygonFilterExample/PolygonFilterExample.cs Line: 185)
    192.  
    193. Assets/OpenCVForUnity/Examples/Advanced/PolygonFilterExample/PolygonFilterExample.cs(272,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    194. (Filename: Assets/OpenCVForUnity/Examples/Advanced/PolygonFilterExample/PolygonFilterExample.cs Line: 272)
    195.  
    196. Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(21,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    197. (Filename: Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs Line: 21)
    198.  
    199. Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(28,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    200. (Filename: Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs Line: 28)
    201.  
    202. Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(33,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    203. (Filename: Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs Line: 33)
    204.  
    205. Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs(38,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    206. (Filename: Assets/OpenCVForUnity/Examples/Basic/Texture2DToMatExample/Texture2DToMatExample.cs Line: 38)
    207.  
    208. Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatExample/WebCamTextureToMatExample.cs(231,23): error CS0234: The type or namespace name `webCamTextureToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    209. (Filename: Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatExample/WebCamTextureToMatExample.cs Line: 231)
    210.  
    211. Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatExample/WebCamTextureToMatExample.cs(235,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    212. (Filename: Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatExample/WebCamTextureToMatExample.cs Line: 235)
    213.  
    214. Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatHelperExample/WebCamTextureToMatHelperExample.cs(103,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    215. (Filename: Assets/OpenCVForUnity/Examples/Basic/WebCamTextureToMatHelperExample/WebCamTextureToMatHelperExample.cs Line: 103)
    216.  
    217. Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoCreateMarkerExample.cs(49,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    218. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoCreateMarkerExample.cs Line: 49)
    219.  
    220. Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoExample.cs(65,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    221. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoExample.cs Line: 65)
    222.  
    223. Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoExample.cs(235,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    224. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoExample.cs Line: 235)
    225.  
    226. Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoWebCamTextureExample.cs(377,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    227. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/aruco/ArUcoExample/ArUcoWebCamTextureExample.cs Line: 377)
    228.  
    229. Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(36,44): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    230. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs Line: 36)
    231.  
    232. Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(37,44): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    233. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs Line: 37)
    234.  
    235. Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(38,49): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    236. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs Line: 38)
    237.  
    238. Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs(121,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    239. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/face/FaceRecognizerExample/FaceRecognizerExample.cs Line: 121)
    240.  
    241. Assets/OpenCVForUnity/Examples/ContribModules/plot/PlotExample/PlotExample.cs(36,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    242. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/plot/PlotExample/PlotExample.cs Line: 36)
    243.  
    244. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(38,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    245. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 38)
    246.  
    247. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(39,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    248. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 39)
    249.  
    250. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(40,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    251. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 40)
    252.  
    253. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(75,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    254. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 75)
    255.  
    256. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(131,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    257. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 131)
    258.  
    259. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs(136,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    260. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextDetectionExample.cs Line: 136)
    261.  
    262. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(42,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    263. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 42)
    264.  
    265. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(43,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    266. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 43)
    267.  
    268. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(44,56): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    269. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 44)
    270.  
    271. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(45,59): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    272. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 45)
    273.  
    274. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(49,59): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    275. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 49)
    276.  
    277. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(96,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    278. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 96)
    279.  
    280. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(191,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    281. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 191)
    282.  
    283. Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs(206,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    284. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/text/TextExample/TextRecognitionExample.cs Line: 206)
    285.  
    286. Assets/OpenCVForUnity/Examples/ContribModules/tracking/TrackingExample/TrackingExample.cs(80,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    287. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/tracking/TrackingExample/TrackingExample.cs Line: 80)
    288.  
    289. Assets/OpenCVForUnity/Examples/ContribModules/tracking/TrackingExample/TrackingExample.cs(174,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    290. (Filename: Assets/OpenCVForUnity/Examples/ContribModules/tracking/TrackingExample/TrackingExample.cs Line: 174)
    291.  
    292. Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs(26,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    293. (Filename: Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs Line: 26)
    294.  
    295. Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs(27,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    296. (Filename: Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs Line: 27)
    297.  
    298. Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs(50,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    299. (Filename: Assets/OpenCVForUnity/Examples/MainModules/calib3d/StereoBMExample/StereoBMExample.cs Line: 50)
    300.  
    301. Assets/OpenCVForUnity/Examples/MainModules/core/PCAExample/PCAExample.cs(39,44): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    302. (Filename: Assets/OpenCVForUnity/Examples/MainModules/core/PCAExample/PCAExample.cs Line: 39)
    303.  
    304. Assets/OpenCVForUnity/Examples/MainModules/core/PCAExample/PCAExample.cs(106,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    305. (Filename: Assets/OpenCVForUnity/Examples/MainModules/core/PCAExample/PCAExample.cs Line: 106)
    306.  
    307. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(38,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    308. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 38)
    309.  
    310. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(41,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    311. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 41)
    312.  
    313. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(53,43): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    314. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 53)
    315.  
    316. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(54,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    317. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 54)
    318.  
    319. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(135,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    320. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 135)
    321.  
    322. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs(140,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    323. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDExample.cs Line: 140)
    324.  
    325. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(65,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    326. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs Line: 65)
    327.  
    328. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(67,43): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    329. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs Line: 67)
    330.  
    331. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(68,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    332. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs Line: 68)
    333.  
    334. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(193,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    335. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs Line: 193)
    336.  
    337. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs(209,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    338. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs Line: 209)
    339.  
    340. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(50,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    341. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs Line: 50)
    342.  
    343. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(52,43): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    344. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs Line: 52)
    345.  
    346. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(53,46): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    347. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs Line: 53)
    348.  
    349. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(178,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    350. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs Line: 178)
    351.  
    352. Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs(192,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    353. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/ResnetSSDFaceDetectionExample.cs Line: 192)
    354.  
    355. Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(57,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    356. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs Line: 57)
    357.  
    358. Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(60,52): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    359. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs Line: 60)
    360.  
    361. Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(66,45): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    362. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs Line: 66)
    363.  
    364. Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(159,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    365. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs Line: 159)
    366.  
    367. Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs(175,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    368. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/TensorFlowExample/TensorFlowWebCamTextureExample.cs Line: 175)
    369.  
    370. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(30,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    371. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 30)
    372.  
    373. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(33,61): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    374. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 33)
    375.  
    376. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(41,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    377. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 41)
    378.  
    379. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(50,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    380. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 50)
    381.  
    382. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(51,40): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    383. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 51)
    384.  
    385. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(154,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    386. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 154)
    387.  
    388. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs(159,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    389. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionExample.cs Line: 159)
    390.  
    391. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(70,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    392. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 70)
    393.  
    394. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(72,48): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    395. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 72)
    396.  
    397. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(79,47): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    398. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 79)
    399.  
    400. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(80,40): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    401. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 80)
    402.  
    403. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(251,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    404. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 251)
    405.  
    406. Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs(269,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    407. (Filename: Assets/OpenCVForUnity/Examples/MainModules/dnn/YoloExample/YoloObjectDetectionWebCamTextureExample.cs Line: 269)
    408.  
    409. Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    410. (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs Line: 24)
    411.  
    412. Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs(28,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    413. (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs Line: 28)
    414.  
    415. Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs(70,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    416. (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/Feature2DExample/Feature2DExample.cs Line: 70)
    417.  
    418. Assets/OpenCVForUnity/Examples/MainModules/features2d/MSERExample/MSERExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    419. (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/MSERExample/MSERExample.cs Line: 25)
    420.  
    421. Assets/OpenCVForUnity/Examples/MainModules/features2d/MSERExample/MSERExample.cs(45,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    422. (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/MSERExample/MSERExample.cs Line: 45)
    423.  
    424. Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs(38,45): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    425. (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs Line: 38)
    426.  
    427. Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs(49,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    428. (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs Line: 49)
    429.  
    430. Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs(67,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    431. (Filename: Assets/OpenCVForUnity/Examples/MainModules/features2d/SimpleBlobExample/SimpleBlobExample.cs Line: 67)
    432.  
    433. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(39,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    434. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 39)
    435.  
    436. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(46,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    437. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 46)
    438.  
    439. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(51,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    440. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 51)
    441.  
    442. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(56,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    443. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 56)
    444.  
    445. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(72,23): error CS0234: The type or namespace name `textureToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    446. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 72)
    447.  
    448. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(73,23): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    449. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 73)
    450.  
    451. Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs(125,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    452. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgcodecs/ImwriteScreenCaptureExample/ImwriteScreenCaptureExample.cs Line: 125)
    453.  
    454. Assets/OpenCVForUnity/Examples/MainModules/imgproc/CircleDetectionExample/CircleDetectionExample.cs(117,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    455. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/CircleDetectionExample/CircleDetectionExample.cs Line: 117)
    456.  
    457. Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConnectedComponentsExample/ConnectedComponentsExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    458. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConnectedComponentsExample/ConnectedComponentsExample.cs Line: 25)
    459.  
    460. Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConnectedComponentsExample/ConnectedComponentsExample.cs(90,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    461. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConnectedComponentsExample/ConnectedComponentsExample.cs Line: 90)
    462.  
    463. Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConvexHullExample/ConvexHullExample.cs(59,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    464. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/ConvexHullExample/ConvexHullExample.cs Line: 59)
    465.  
    466. Assets/OpenCVForUnity/Examples/MainModules/imgproc/DrawingExample/DrawingExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    467. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/DrawingExample/DrawingExample.cs Line: 24)
    468.  
    469. Assets/OpenCVForUnity/Examples/MainModules/imgproc/DrawingExample/DrawingExample.cs(65,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    470. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/DrawingExample/DrawingExample.cs Line: 65)
    471.  
    472. Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    473. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs Line: 25)
    474.  
    475. Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs(32,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    476. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs Line: 32)
    477.  
    478. Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs(56,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    479. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/GrabCutExample/GrabCutExample.cs Line: 56)
    480.  
    481. Assets/OpenCVForUnity/Examples/MainModules/imgproc/HoughLinesPExample/HoughLinesPExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    482. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/HoughLinesPExample/HoughLinesPExample.cs Line: 25)
    483.  
    484. Assets/OpenCVForUnity/Examples/MainModules/imgproc/HoughLinesPExample/HoughLinesPExample.cs(50,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    485. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/HoughLinesPExample/HoughLinesPExample.cs Line: 50)
    486.  
    487. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs(23,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    488. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs Line: 23)
    489.  
    490. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs(30,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    491. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs Line: 30)
    492.  
    493. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs(63,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    494. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchShapesExample/MatchShapesExample.cs Line: 63)
    495.  
    496. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    497. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs Line: 25)
    498.  
    499. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs(26,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    500. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs Line: 26)
    501.  
    502. Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs(53,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    503. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/MatchTemplateExample/MatchTemplateExample.cs Line: 53)
    504.  
    505. Assets/OpenCVForUnity/Examples/MainModules/imgproc/ThresholdExample/ThresholdExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    506. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/ThresholdExample/ThresholdExample.cs Line: 25)
    507.  
    508. Assets/OpenCVForUnity/Examples/MainModules/imgproc/ThresholdExample/ThresholdExample.cs(33,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    509. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/ThresholdExample/ThresholdExample.cs Line: 33)
    510.  
    511. Assets/OpenCVForUnity/Examples/MainModules/imgproc/WrapPerspectiveExample/WrapPerspectiveExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    512. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/WrapPerspectiveExample/WrapPerspectiveExample.cs Line: 24)
    513.  
    514. Assets/OpenCVForUnity/Examples/MainModules/imgproc/WrapPerspectiveExample/WrapPerspectiveExample.cs(46,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    515. (Filename: Assets/OpenCVForUnity/Examples/MainModules/imgproc/WrapPerspectiveExample/WrapPerspectiveExample.cs Line: 46)
    516.  
    517. Assets/OpenCVForUnity/Examples/MainModules/ml/SVMExample/SVMExample.cs(76,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    518. (Filename: Assets/OpenCVForUnity/Examples/MainModules/ml/SVMExample/SVMExample.cs Line: 76)
    519.  
    520. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs(147,57): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    521. (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs Line: 147)
    522.  
    523. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs(148,62): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    524. (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs Line: 148)
    525.  
    526. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs(360,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    527. (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/AsynchronousFaceDetectionWebCamTextureExample.cs Line: 360)
    528.  
    529. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs(50,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    530. (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs Line: 50)
    531.  
    532. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs(66,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    533. (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs Line: 66)
    534.  
    535. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs(91,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    536. (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionExample.cs Line: 91)
    537.  
    538. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionWebCamTextureExample.cs(71,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    539. (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionWebCamTextureExample.cs Line: 71)
    540.  
    541. Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionWebCamTextureExample.cs(165,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    542. (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/FaceDetectionExample/FaceDetectionWebCamTextureExample.cs Line: 165)
    543.  
    544. Assets/OpenCVForUnity/Examples/MainModules/objdetect/HOGDescriptorExample/HOGDescriptorExample.cs(63,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    545. (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/HOGDescriptorExample/HOGDescriptorExample.cs Line: 63)
    546.  
    547. Assets/OpenCVForUnity/Examples/MainModules/objdetect/HOGDescriptorExample/HOGDescriptorExample.cs(139,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    548. (Filename: Assets/OpenCVForUnity/Examples/MainModules/objdetect/HOGDescriptorExample/HOGDescriptorExample.cs Line: 139)
    549.  
    550. Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    551. (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs Line: 25)
    552.  
    553. Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs(32,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    554. (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs Line: 32)
    555.  
    556. Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs(43,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    557. (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/InpaintExample/InpaintExample.cs Line: 43)
    558.  
    559. Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs(24,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    560. (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs Line: 24)
    561.  
    562. Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs(25,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    563. (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs Line: 25)
    564.  
    565. Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs(39,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    566. (Filename: Assets/OpenCVForUnity/Examples/MainModules/photo/SeamlessCloneExample/SeamlessCloneExample.cs Line: 39)
    567.  
    568. Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(21,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    569. (Filename: Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs Line: 21)
    570.  
    571. Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(27,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    572. (Filename: Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs Line: 27)
    573.  
    574. Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(99,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    575. (Filename: Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs Line: 99)
    576.  
    577. Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs(104,19): error CS0234: The type or namespace name `setDebugMode' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    578. (Filename: Assets/OpenCVForUnity/Examples/MainModules/shape/ThinPlateSplineShapeTransformerExample/ThinPlateSplineShapeTransformerExample.cs Line: 104)
    579.  
    580. Assets/OpenCVForUnity/Examples/MainModules/video/BackgroundSubtractorMOG2Example/BackgroundSubtractorMOG2Example.cs(124,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    581. (Filename: Assets/OpenCVForUnity/Examples/MainModules/video/BackgroundSubtractorMOG2Example/BackgroundSubtractorMOG2Example.cs Line: 124)
    582.  
    583. Assets/OpenCVForUnity/Examples/MainModules/video/CamShiftExample/CamShiftExample.cs(241,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    584. (Filename: Assets/OpenCVForUnity/Examples/MainModules/video/CamShiftExample/CamShiftExample.cs Line: 241)
    585.  
    586. Assets/OpenCVForUnity/Examples/MainModules/video/OpticalFlowExample/OpticalFlowExample.cs(243,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    587. (Filename: Assets/OpenCVForUnity/Examples/MainModules/video/OpticalFlowExample/OpticalFlowExample.cs Line: 243)
    588.  
    589. Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoCaptureExample/VideoCaptureExample.cs(59,33): error CS0234: The type or namespace name `getFilePath' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    590. (Filename: Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoCaptureExample/VideoCaptureExample.cs Line: 59)
    591.  
    592. Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoCaptureExample/VideoCaptureExample.cs(118,23): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    593. (Filename: Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoCaptureExample/VideoCaptureExample.cs Line: 118)
    594.  
    595. Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs(116,19): error CS0234: The type or namespace name `texture2DToMat' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    596. (Filename: Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs Line: 116)
    597.  
    598. Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs(120,19): error CS0234: The type or namespace name `matToTexture2D' does not exist in the namespace `Utils'. Are you missing an assembly reference?
    599. (Filename: Assets/OpenCVForUnity/Examples/MainModules/videoio/VideoWriterExample/VideoWriterExample.cs Line: 120)
     
  45. VIRNECT_unity

    VIRNECT_unity

    Joined:
    Jul 20, 2015
    Posts:
    4
    Hi, I tried to use MobileNetSSDWebCamTextureExample with other model.
    accoring to https://github.com/opencv/opencv/blob/master/samples/dnn/mobilenet_ssd_python.py,
    TensorFlow model from TensorFlow object detection model zoo may be used.
    but, when I play the example with tensorflow model, error is occurred.
    How can I use dnn module with other model?

    Any comment would be really helpful
    Thank you, in advance!


    dnn::forward_11() : C:\Users\satoo\Desktop\opencv\modules\dnn\src\layers\prior_box_layer.cpp:205: error: (-215) !_aspectRatios.empty(), _minSize > 0 in function cv::dnn::priorBoxLayerImpl::priorBoxLayerImpl

    UnityEngine.Debug:LogError(Object)
    OpenCVForUnity.Utils:<debugLogFunc>m__0(String) (at Assets/OpenCVForUnity/org/opencv/unity/Utils.cs:1134)
    OpenCVForUnity.Net:dnn_Net_forward_11(IntPtr)
    OpenCVForUnity.Net:forward() (at Assets/OpenCVForUnity/org/opencv/dnn/Net.cs:87)
    OpenCVForUnityExample.MobileNetSSDWebCamTextureExample:Update() (at Assets/OpenCVForUnity/Examples/MainModules/dnn/CaffeExample/MobileNetSSDWebCamTextureExample.cs:178)
     
  46. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    ArUcoCameraCalibrationExample
    https://www.dropbox.com/s/u341w1aklw2v5mt/ArUcoCameraCalibrationExample_test.unitypackage?dl=0
    ArUcoCameraCalibrationExample is an example combining ArUcoCameraCalibration and WebCamTexture.
    This example will be added to the next version of OpenCVforUnity.
     
  47. sticklezz

    sticklezz

    Joined:
    Oct 27, 2015
    Posts:
    33
    I notice on an Android Pixel, the front facing camera in OpenCV is much darker (seems to only be lit 50%) than the Android native camera front facing app.

    Any idea why this, is or how to fix?

    EDIT:
    Actually this is an issue w/ WebCamTextureToMatHelper
    WebCamTextureToMatExample is fine
     
    Last edited: Mar 7, 2018
  48. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    I solved the problem with the following procedure.
    1. Import ARKitPlugin 1.0.14.
    2. Replace "namespace Utils" to "namespace ARKitUtils".
    3. Replace "using Utils;" to "using ARKitUtils;".
    4. Import OpenCV for Unity 2.2.6.
     
  49. EnoxSoftware

    EnoxSoftware

    Joined:
    Oct 29, 2014
    Posts:
    1,565
    Which model did you try?
     
  50. EnterpriseVR

    EnterpriseVR

    Joined:
    Dec 9, 2016
    Posts:
    2
    Do you have any coherent documentation on what OpenCV is and what it does? The website only gives information in fragments.