OpenCVForUnity膨胀与腐蚀

本文介绍了图像处理中的基本形态学操作——膨胀与腐蚀。通过使用特定的核与图像卷积实现,这些操作能有效识别图像中的极大和极小区域,帮助进行特征提取和增强。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

膨胀与腐蚀属于图像的形态学范畴的基本转换函数。形态学通常用于寻找图像中的明显的极大、极小区域,以及求图像的梯度。

膨胀 dilate

膨胀是指将图像(srcMat)与核(kernel)进行卷积。

/// <summary>
/// 膨胀
/// </summary>
void OnDilate()
{
    dstMat = new Mat();
    int ksize = 7;
    Mat kernel = new Mat(ksize, ksize, CvType.CV_32F);
    Imgproc.dilate(srcMat, dstMat, kernel);

    Texture2D t2d = new Texture2D(dstMat.width(), dstMat.height());
    Sprite sp = Sprite.Create(t2d, new UnityEngine.Rect(0, 0, t2d.width, t2d.height), Vector2.zero);
    m_dilateButton.image.sprite = sp;
    m_dilateButton.image.preserveAspect = true;
    Utils.matToTexture2D(dstMat, t2d);
}

腐蚀 erode

腐蚀是膨胀的反操作。

/// <summary>
/// 腐蚀
/// </summary>
void OnErode()
{
    dstMat = new Mat();
    int ksize = 7;
    Mat kernel = new Mat(ksize, ksize, CvType.CV_32F);
    Imgproc.erode(srcMat, dstMat, kernel);

    Texture2D t2d = new Texture2D(dstMat.width(), dstMat.height());
    Sprite sp = Sprite.Create(t2d, new UnityEngine.Rect(0, 0, t2d.width, t2d.height), Vector2.zero);
    m_erodeButton.image.sprite = sp;
    m_erodeButton.image.preserveAspect = true;
    Utils.matToTexture2D(dstMat, t2d);
}

最终效果

膨胀与腐蚀

Works with Unity Cloud Build iOS & Android support Windows10 UWP support WebGL support Win & Mac & Linux Standalone support Preview support in the Editor OpenCV for Unity is an Assets Plugin for using OpenCV 3.4.2 from within Unity. Official Site | ExampleCode | Android Demo WebGL Demo | Tutorial & Demo Video | Forum | API Reference | Support Modules Features: - Since this package is a clone of OpenCV Java, you are able to use the same API as OpenCV Java 3.4.2 (link). - You can image processing in real-time by using the WebCamTexture capabilities of Unity. (real-time face detection works smoothly on iPhone 5) - Provides a method to interconversion of Unity's Texture2D and OpenCV's Mat. - IDisposable is implemented in many classes.You can manage the resources with the “using” statement. - Examples of integration with other publisher assets are available.(e.g. PlayMaker, NatCam, NatCorder) ExampleCode using OpenCV for Unity is available. MarkerBased AR Example MarkerLess AR Example FaceTracker Example FaceSwapper Example FaceMask Example RealTime FaceRecognition Example GoogleVR with OpenCV for Unity Example Kinect with OpenCV for Unity Example AVPro with OpenCV for Unity Example HoloLens with OpenCV for Unity Example PlayMakerActions for OpenCVforUnity NatCam with OpenCVForUnity Example NatCorder with OpenCVForUnity Example OpenCV for Unity uses OpenCV under 3-clause BSD License; see Third-Party Notices.txt file in package for details. System Requirements Build Win Standalone & Preview Editor : Windows 7 or later Build Mac Standalone & Preview Editor : OSX 10.9 or later
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值