You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
484 lines
13 KiB
484 lines
13 KiB
using OpenCVForUnity.CoreModule;
|
|
using OpenCVForUnity.UnityUtils;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
using UnityEngine.UI;
|
|
|
|
namespace OpenCVForUnityExample
|
|
{
|
|
public class OpenCVForUnityExample : MonoBehaviour
|
|
{
|
|
public Text versionInfo;
|
|
public ScrollRect scrollRect;
|
|
static float verticalNormalizedPosition = 1f;
|
|
|
|
// Use this for initialization
|
|
void Start()
|
|
{
|
|
versionInfo.text = Core.NATIVE_LIBRARY_NAME + " " + Utils.getVersion() + " (" + Core.VERSION + ")";
|
|
versionInfo.text += " / UnityEditor " + Application.unityVersion;
|
|
versionInfo.text += " / ";
|
|
|
|
#if UNITY_EDITOR
|
|
versionInfo.text += "Editor";
|
|
#elif UNITY_STANDALONE_WIN
|
|
versionInfo.text += "Windows";
|
|
#elif UNITY_STANDALONE_OSX
|
|
versionInfo.text += "Mac OSX";
|
|
#elif UNITY_STANDALONE_LINUX
|
|
versionInfo.text += "Linux";
|
|
#elif UNITY_ANDROID
|
|
versionInfo.text += "Android";
|
|
#elif UNITY_IOS
|
|
versionInfo.text += "iOS";
|
|
#elif UNITY_WSA
|
|
versionInfo.text += "WSA";
|
|
#elif UNITY_WEBGL
|
|
versionInfo.text += "WebGL";
|
|
#endif
|
|
versionInfo.text += " ";
|
|
#if ENABLE_MONO
|
|
versionInfo.text += "Mono";
|
|
#elif ENABLE_IL2CPP
|
|
versionInfo.text += "IL2CPP";
|
|
#elif ENABLE_DOTNET
|
|
versionInfo.text += ".NET";
|
|
#endif
|
|
|
|
scrollRect.verticalNormalizedPosition = verticalNormalizedPosition;
|
|
|
|
#if UNITY_WSA_10_0
|
|
GameObject.Find("Canvas/Panel/SceneList/ScrollView/List/MainModulesGroup/FastNeuralStyleTransferExampleButton").GetComponent<Button>().interactable = false;
|
|
GameObject.Find("Canvas/Panel/SceneList/ScrollView/List/MainModulesGroup/LibFaceDetectionExampleButton").GetComponent<Button>().interactable = false;
|
|
GameObject.Find("Canvas/Panel/SceneList/ScrollView/List/MainModulesGroup/MaskRCNNExampleButton").GetComponent<Button>().interactable = false;
|
|
GameObject.Find ("Canvas/Panel/SceneList/ScrollView/List/MainModulesGroup/MobileNetSSDExampleButton").GetComponent<Button> ().interactable = false;
|
|
GameObject.Find ("Canvas/Panel/SceneList/ScrollView/List/MainModulesGroup/MobileNetSSDWebCamTextureExampleButton").GetComponent<Button> ().interactable = false;
|
|
GameObject.Find ("Canvas/Panel/SceneList/ScrollView/List/MainModulesGroup/OpenPoseExampleButton").GetComponent<Button> ().interactable = false;
|
|
GameObject.Find ("Canvas/Panel/SceneList/ScrollView/List/MainModulesGroup/ResnetSSDFaceDetectionExampleButton").GetComponent<Button> ().interactable = false;
|
|
GameObject.Find ("Canvas/Panel/SceneList/ScrollView/List/MainModulesGroup/TensorflowInceptionWebCamTextureExampleButton").GetComponent<Button> ().interactable = false;
|
|
GameObject.Find ("Canvas/Panel/SceneList/ScrollView/List/MainModulesGroup/YoloObjectDetectionExampleButton").GetComponent<Button> ().interactable = false;
|
|
GameObject.Find ("Canvas/Panel/SceneList/ScrollView/List/MainModulesGroup/YoloObjectDetectionWebCamTextureExampleButton").GetComponent<Button> ().interactable = false;
|
|
|
|
GameObject.Find ("Canvas/Panel/SceneList/ScrollView/List/ContribModulesGroup/TextDetectionExampleButton").GetComponent<Button> ().interactable = false;
|
|
GameObject.Find ("Canvas/Panel/SceneList/ScrollView/List/ContribModulesGroup/TextRecognitionExampleButton").GetComponent<Button> ().interactable = false;
|
|
#endif
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
|
|
public void OnScrollRectValueChanged()
|
|
{
|
|
verticalNormalizedPosition = scrollRect.verticalNormalizedPosition;
|
|
}
|
|
|
|
|
|
public void OnShowSystemInfoButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ShowSystemInfo");
|
|
}
|
|
|
|
public void OnShowLicenseButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ShowLicense");
|
|
}
|
|
|
|
#region Basic
|
|
|
|
public void OnTexture2DToMatExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("Texture2DToMatExample");
|
|
}
|
|
|
|
public void OnWebCamTextureToMatExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("WebCamTextureToMatExample");
|
|
}
|
|
|
|
public void OnWebCamTextureToMatHelperExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("WebCamTextureToMatHelperExample");
|
|
}
|
|
|
|
public void OnMatBasicProcessingExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("MatBasicProcessingExample");
|
|
}
|
|
|
|
public void OnUtils_GetFilePathExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("Utils_GetFilePathExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Advanced
|
|
|
|
public void OnComicFilterExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ComicFilterExample");
|
|
}
|
|
|
|
public void OnGreenScreenExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("GreenScreenExample");
|
|
}
|
|
|
|
public void OnHandPoseEstimationExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("HandPoseEstimationExample");
|
|
}
|
|
|
|
public void OnMultiObjectTrackingBasedOnColorExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("MultiObjectTrackingBasedOnColorExample");
|
|
}
|
|
|
|
public void OnPolygonFilterExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("PolygonFilterExample");
|
|
}
|
|
|
|
public void OnAlphaBlendingExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("AlphaBlendingExample");
|
|
}
|
|
|
|
public void OnMatToTextureInRenderThreadExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("MatToTextureInRenderThreadExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Main modules
|
|
|
|
#region core
|
|
|
|
public void OnPCAExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("PCAExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region imgproc
|
|
|
|
public void OnCircleDetectionExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("CircleDetectionExample");
|
|
}
|
|
|
|
public void OnConnectedComponentsExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ConnectedComponentsExample");
|
|
}
|
|
|
|
public void OnConvexHullExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ConvexHullExample");
|
|
}
|
|
|
|
public void OnDrawingExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("DrawingExample");
|
|
}
|
|
|
|
public void OnGrabCutExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("GrabCutExample");
|
|
}
|
|
|
|
public void OnHoughLinesPExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("HoughLinesPExample");
|
|
}
|
|
|
|
public void OnMatchShapesExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("MatchShapesExample");
|
|
}
|
|
|
|
public void OnMatchTemplateExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("MatchTemplateExample");
|
|
}
|
|
|
|
public void OnThresholdExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ThresholdExample");
|
|
}
|
|
|
|
public void OnWrapPerspectiveExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("WrapPerspectiveExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region videoio
|
|
|
|
public void OnVideoCaptureExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("VideoCaptureExample");
|
|
}
|
|
|
|
public void OnVideoWriterExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("VideoWriterExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region video
|
|
|
|
public void OnBackgroundSubtractorMOG2ExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("BackgroundSubtractorMOG2Example");
|
|
}
|
|
|
|
public void OnCamShiftExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("CamShiftExample");
|
|
}
|
|
|
|
public void OnKalmanFilterExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("KalmanFilterExample");
|
|
}
|
|
|
|
public void OnOpticalFlowExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("OpticalFlowExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region calib3d
|
|
|
|
public void OnStereoBMExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("StereoBMExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region features2d
|
|
|
|
public void OnFeature2DExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("Feature2DExample");
|
|
}
|
|
|
|
public void OnMSERExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("MSERExample");
|
|
}
|
|
|
|
public void OnSimpleBlobExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("SimpleBlobExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region imgcodecs
|
|
|
|
public void OnImwriteScreenCaptureExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ImwriteScreenCaptureExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region objdetect
|
|
|
|
public void OnFaceDetectionExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("FaceDetectionExample");
|
|
}
|
|
|
|
public void OnFaceDetectionWebCamTextureExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("FaceDetectionWebCamTextureExample");
|
|
}
|
|
|
|
public void OnAsynchronousFaceDetectionWebCamTextureExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("AsynchronousFaceDetectionWebCamTextureExample");
|
|
}
|
|
|
|
public void OnHOGDescriptorExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("HOGDescriptorExample");
|
|
}
|
|
|
|
public void OnQRCodeDetectorExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("QRCodeDetectorExample");
|
|
}
|
|
|
|
public void OnQRCodeDetectorWebCamTextureExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("QRCodeDetectorWebCamTextureExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region dnn
|
|
|
|
public void OnFastNeuralStyleTransferExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("FastNeuralStyleTransferExample");
|
|
}
|
|
|
|
public void OnLibFaceDetectionExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("LibFaceDetectionExample");
|
|
}
|
|
|
|
public void OnMaskRCNNExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("MaskRCNNExample");
|
|
}
|
|
|
|
public void OnMobileNetSSDExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("MobileNetSSDExample");
|
|
}
|
|
|
|
public void OnMobileNetSSDWebCamTextureExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("MobileNetSSDWebCamTextureExample");
|
|
}
|
|
|
|
public void OnOpenPoseExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("OpenPoseExample");
|
|
}
|
|
|
|
public void OnResnetSSDFaceDetectionExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ResnetSSDFaceDetectionExample");
|
|
}
|
|
|
|
public void OnTensorflowInceptionWebCamTextureExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("TensorflowInceptionWebCamTextureExample");
|
|
}
|
|
|
|
public void OnYoloObjectDetectionExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("YoloObjectDetectionExample");
|
|
}
|
|
|
|
public void OnYoloObjectDetectionWebCamTextureExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("YoloObjectDetectionWebCamTextureExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ml
|
|
|
|
public void OnSVMExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("SVMExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region photo
|
|
|
|
public void OnInpaintExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("InpaintExample");
|
|
}
|
|
|
|
public void OnSeamlessCloneExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("SeamlessCloneExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#endregion
|
|
|
|
#region Contrib modules
|
|
|
|
#region aruco
|
|
|
|
public void OnArUcoExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ArUcoExample");
|
|
}
|
|
|
|
public void OnArUcoWebCamTextureExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ArUcoWebCamTextureExample");
|
|
}
|
|
|
|
public void OnArUcoCreateMarkerExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ArUcoCreateMarkerExample");
|
|
}
|
|
|
|
public void OnArUcoCameraCalibrationExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("ArUcoCameraCalibrationExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region face
|
|
|
|
public void OnFaceMarkExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("FaceMarkExample");
|
|
}
|
|
|
|
public void OnFaceRecognizerExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("FaceRecognizerExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region plot
|
|
|
|
public void OnPlotExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("PlotExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region text
|
|
|
|
public void OnTextDetectionExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("TextDetectionExample");
|
|
}
|
|
|
|
public void OnTextRecognitionExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("TextRecognitionExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region tracking
|
|
|
|
public void OnTrackingExampleButtonClick()
|
|
{
|
|
SceneManager.LoadScene("TrackingExample");
|
|
}
|
|
|
|
#endregion
|
|
|
|
#endregion
|
|
}
|
|
} |