我试图将捕获图像中的灰度对象编写为0 1的矩阵,表示一个对象像素块(或类似对象样式缩放),我可以想象通过循环对象,缩放和根据颜色等级编写矩阵, 但是我正在寻找智能或开源工具,
.NET是首选,
[更新,详细解释]
原始图像是彩色的,但是,我将它转换为256灰度,然后我想将其缩放为黑色或白色,所以在一天结束时它只是一个黑白图片我想要转换它到零一矩阵,
以下网址包含如何使用名为imagemagick的软件将黑白图片转换为零一矩阵的讨论:
http://studio.imagemagick.org/discourse-server/viewtopic.php?f=1&t=18433
注意Zero one矩阵,它展示了龙面图像!是否有任何技术或开源工具可以帮助我实现这一目标?
答案 0 :(得分:3)
使用Emgu OpenCV for .NET的以下内容可以正常工作。
using Emgu.CV;
using Emgu.CV.CvEnum;
using Emgu.CV.Structure;
using System;
using System.Drawing;
using System.IO;
using (Image<Bgr, Byte> img = new Image<Bgr, Byte>("MyImage.jpg"))
{
Matrix<Int32> matrix = new Matrix<Int32>(img.Width, img.Height);
for (int i = 0; i<img.Height;i++)
{
for (int j = 0; j<img.Width;j++)
{
if (img.Data[i,j,2] == 255 &&
img.Data[i,j,1] == 255 &&
img.Data[i,j,0] == 255)
{
matrix.Data[i,j] = 0;
}
else
{
matrix.Data[i,j] = 1;
}
}
}
TextWriter tw = new StreamWriter("output.txt");
for (int i = 0; i<img.Height;i++)
{
for (int j = 0; j<img.Width;j++)
{
tw.Write(matrix.Data[i,j]);
}
tw.Write(tw.NewLine);
}
}
请注意,上面的代码段会加载彩色图像并创建一个矩阵,白色为0,否则为1。
为了加载和处理灰度图像
Image<Bgr, Byte>
成为Image<Gray, Byte>
,比较简化为公正
if (img.Data[i,j,0] == 255)
。
同样要进行阈值处理(从颜色转换为灰度到黑白),您可以使用cvThreshold
方法使用Otsu的阈值处理,使用类似的方法:
int threshold = 150;
Image<Bgr, Byte> img = new Image<Bgr, Byte>("MyImage.jpg");
Image<Gray, Single> img2 = img1.Convert<Gray, Single>();
Image<Gray, Single> img3 = new Image<Gray, Single>(img2.Width, img2.Height);
CvInvoke.cvThreshold(img2, img3, threshold, 255, THRESH.CV_THRESH_OTSU);
其他可能的工具包括
convert
和来自netpbm的pnmoraw
,如您关联的网址所示,使用示例代码段convert lib/dragon_face.xbm pbm: | pnmnoraw
。