栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

Emgucv开发采坑记录(1)初始化图像变量时使用Mat,尽量不要使用Image<gray,byte>

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Emgucv开发采坑记录(1)初始化图像变量时使用Mat,尽量不要使用Image<gray,byte>

Mat mat = Mat.Zeros(30, 30, DepthType.Cv8U, 1);
        Rectangle rectangle = new Rectangle(1, 1, 10, 10);
        CvInvoke.Rectangle(mat, rectangle, new MCvScalar(8), -1);
        CvInvoke.Imshow("mat", mat.ToImage());
        Image thresholdImg = new Image(mat.Width, mat.Height);
        CvInvoke.Threshold(mat, thresholdImg, 5, 255, ThresholdType.Binary);
        PrintMatrix(thresholdImg.Mat);//打印灰度


可以发现,上述灰度排列有问题
当把 Image thresholdImg = new Image(mat.Width, mat.Height);
改成如下代码时,灰度排列正常:
Mat thresholdImg = new Mat(mat.Height ,mat .Width,DepthType.Cv8U ,1 );

奇怪的是,不是每一次使用Image thresholdImg = new Image(mat.Width, mat.Height)这样的代码会有问题,有时候也不会有问题,对应不同的行和列的数值,有时候可以,有时候不可以,但是最好不要使用它,声明图像变量的时候使用Mat比较稳妥。

 private void PrintMatrix(Mat mat)
        {

            for (int i = 0; i < mat.Rows; i++)
            {
                StringBuilder sb = new StringBuilder();
                for (int j = 0; j < mat.Cols; j++)
                {
                    sb.Append(mat.GetData().GetValue(i, j).ToString().PadLeft(3, '0'));
                    sb.Append(",");
                }

                Console.WriteLine(sb);
            }

        }
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/664863.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号