如何将分割图像显示为8x8像素?

时间:2015-04-02 03:11:35

标签: c# .net image dct

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

using Emgu.CV;
using Emgu.CV.Util;
using Emgu.CV.Structure;

namespace DCTTransform
{
    public partial class Form1 : Form
    {
        Image<Bgr, Byte> img;
        Image<Ycc, Byte> imgYcc;
        Bitmap bmp;

        public Form1()
        {
            InitializeComponent();
        }

        private void btBrowse_Click(object sender, EventArgs e)
        {
            OpenFileDialog od = new OpenFileDialog();
            if (od.ShowDialog() == DialogResult.OK)
            {
                img = new Image<Bgr, byte>(od.FileName);
                pcCitra.Image = img.ToBitmap();

                label1.Text = img.Width.ToString();
            }
        }

        //Split citra
        public List<Image> subBlok(Image img, int blokX, int blokY)
        {
            List<Image> res = new List<Image>();
            int pembagiLebar = img.Width / blokX;
            int pembagiTinggi = img.Height / blokY;


            for (int i = 0; i < blokX; i++)//baris
            {
                for (int j = 0; j < blokY; j++)//kolom
                {
                    Bitmap bmp = new Bitmap(img.Width / pembagiLebar, img.Height / pembagiTinggi);
                    //Bitmap bmp = new Bitmap(img.Width, img.Height);

                    Graphics grp = Graphics.FromImage(bmp);
                    grp.DrawImage(img, new Rectangle(0,0 , bmp.Width, bmp.Height), new Rectangle(j * bmp.Width, i * bmp.Height, bmp.Width, bmp.Height), GraphicsUnit.Pixel);
                    res.Add(bmp);
                }
            }


            return res;

        }


        private void btTransform_Click(object sender, EventArgs e)
        {
            //SplitImage
            List<Image> imgs = subBlok(pcCitra.Image, 8, 8);

            pbDCT.Image = imgs[0];


        }
    }
}

我已将此代码划分为8 x 8像素,但结果显示左上角只有1个块(8 x 8)。

我想要的就像这样: |xxxx|xxxx|xxxx|xxxx|..........直到原始图片的宽度相同。

你能帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:0)

如果要将源图像划分为多个8x8图块,则转换函数的循环不正确。如果您想将源图像划分为64个图块,那么它们是正确的,但DCT通常不能使用静态的64个图像集。我不清楚你想要哪一个,但我在这里修复了多个8x8图像:

      List<Image> res = new List<Image>();
        int pembagiLebar = (int)Math.Ceil((float)img.Width / (float)blokX);
        int pembagiTinggi = (int)Math.Ceil((float)img.Height / (float)blokY);


        for (int i = 0; i < pembagiLebar ; i++)//baris
        {
            for (int j = 0; j < pembagiTinggi ; j++)//kolom
            {
                Bitmap bmp = new Bitmap(blokX, blokY);

                using (Graphics grp = Graphics.FromImage(bmp)) {
                     grp.DrawImage(img, 0, 0, new Rectangle(i * blokX, j * blokY, blokX, blokY), GraphicsUnit.Pixel);
                }

                res.Add(bmp);
            }
        }


        return res;

右边缘和底边缘的边界条件也很烦人(我没有在这里),因为源图像尺寸可能不是8的倍数。

答案 1 :(得分:0)

您可以采取几种方法。最简单的处理方法是将图像值存储在长度为8的倍数的行中。将数据填充出来。做同样的事情然后对行数做同样的事情。

然后块(假设为灰度)

  X = starting point

  v0 = X
  v1 = X + 1 
  v2 = X + 2 
  . . . 
  v8 = X + row length
  v9 = X + row length + 1
  v10 = X + row length + 2
  . . . 
  v63 = x = 7 * row length + 7

  To move to the next block in the row X = X + 8. When you reach the end of the row
  X = X + 8 * row length

请记住,输出元素的大小必须是输入的两倍。如果您的图像数据是8位,则整数表示(或浮点值)的DCT输出需要为16位。

如果您无法填充数据,最好的办法是将值复制到64个数组。您可以执行与上述类似的循环,但是,每当您需要访问超出图像宽度或高度的值时,请在临时数组中插入0。