使用opencv中的中值滤波器进行图像压缩,但不使用中值滤波器函数

时间:2011-07-13 05:49:33

标签: c image-processing opencv

我使用c语言为中值滤波器编写了程序。将无符号的int数组值分配给cvscalar值。但是我不能将输出图像的RGB值组合起来。我在cvScalar.how中有不同的颜色来组合它们吗?在这里,我附上了我的程序,

#include "stdafx.h"
#include "cv.h"
#include "highgui.h"
#include "cxtypes.h"
#include "stdio.h"
#include "conio.h"
#include "math.h"
#include "windows.h"

int _tmain(int argc, _TCHAR* argv[])
{
IplImage *image = 0;
image = cvLoadImage( "D:/ragavan/ragav.jpg", 1 );
IplImage *image1=cvCloneImage(image);
cvNamedWindow( "Show", 1 );
cvShowImage( "Show", image );

unsigned int a[400][300],c[400][300];
 unsigned int p[9],t=0;
//  int height,width,step,channels;
// uchar *data;
  int i,j,m,n,k=0,l;


    CvScalar s,w;
    CvSize size=cvGetSize(image);
    unsigned int x=size.height;
    unsigned int y=size.width;

   for(i=0;i<x;i++)
    {
    for(j=0;j<y;j++)
    {  
   s=cvGet2D(image,i,j);                  /*for getting i,j pixels*/
  c[i][j]=s.val[0]+s.val[1]+s.val[2]/3;

//  printf ("%d\t",c[i][j]);
    }                        
 //   printf("\n"); 
    } 

/*to write median filter pgm without using function*/
 for(m=0;m<x;m++)
  {     
  for(n=0;n<y;n++)
  {
  k=0;
  for(i=m;i<m+3;i++)
  {
  for(j=n;j<n+3;j++)
  {

    p[k]=c[i][j];    /*assign 2 dimension values to single dimension */
    k=k+1;
  }
  }
   for(l=0;l<9;l++)
   {
   for(k=0;k<8;k++)
   {

   if(p[k]>p[k+1])
   {                            /*to sort the image pixels */
   t=p[k];
   p[k]=p[k+1];
   p[k+1]=t;
   }
   }
   }
   c[m+1][n+1]=p[4];    /*get yhe middle value and store every 3x3 matrix*/
    }
   } 

  for(m=0;m<x;m++)
   {

   for(n=0;n<y;n++)
   { 
     w.val[0]=c[m][n];   //for blue
    //w.val[1]=c[m][n];  //for green
//   w.val[2]=c[m][n];   //for red

      cvSet2D(image1,m,n,w);    

    }                        
   }  



 /*                     
 height    = image->height;
 width     = image->width;
 step      = image->widthStep;
 channels  = image->nChannels;
 data      = (uchar *)image->imageData;
 printf("Processing a %dx%d image with %d channels\n",height,width,channels); */


    cvNamedWindow( "Show1", 1 );
        cvShowImage( "Show1", image1 );
        cvReleaseImage(&image);
    cvReleaseImage(&image1);
    cvWaitKey(0);
    cvDestroyWindow("show");
    cvDestroyWindow("show1");


 return 0;
}

1 个答案:

答案 0 :(得分:0)

一个解决方案,可能不是最简单的解决方案,可以将所有w.val [0]存储在图像中,将 w.val [1]存储在另一个和最后一个中的w.val [2],这3个图像中的每一个对应于一个通道(B,G,R)。然后,您可以使用cvMerge()组合3个图像。

See the doc of merge here, it's pretty easy to use

如果你不能这样做,只需评论此消息我会尝试写一个更长的代码...... 于连