本文主要是介绍图像的梯度锐化vc代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
void CSDIELSView::OnSharpeningGradient(){
//程序编制:李立宗 lilizong@gmail.com
//2012-8-11if(myImage1.IsNull())OnOpenResourceFile();if(!myImage2.IsNull())myImage2.Destroy();if(myImage2.IsNull()){myImage2.Create(myImage1.GetWidth(),myImage1.GetHeight(),24,0);}//COLORREF pixel; int maxY = myImage1.GetHeight();int maxX=myImage1.GetWidth();byte* pRealData;byte* pRealData2;pRealData=(byte*)myImage1.GetBits();pRealData2=(byte*)myImage2.GetBits();int pit=myImage1.GetPitch();int pit2=myImage2.GetPitch();//需要注意,pit和pit2的值并不一样,所以如果使用一个值,会导致不同的结果出现//CString str;//str.Format(TEXT("%d"),pit);//MessageBox(str);//str.Format(TEXT("%d"),pit2);//MessageBox(str);int bitCount=myImage1.GetBPP()/8;int bitCount2=myImage2.GetBPP()/8;int tempR,tempG,tempB;int temp,tempX,tempY;//int M[3][3]={{1,2,1},{2,4,2},{1,2,1}};int t=100; //门限// tempR=tempG=tempG=0;//说明:将生产的图像作为24位图处理。for (int y=1; y<maxY-1; y++) {for (int x=1; x<maxX-1; x++) {temp=(int)sqrt((float)((*(pRealData+pit*(y)+(x)*bitCount)-*(pRealData+pit*(y)+(x-1)*bitCount))*(*(pRealData+pit*(y)+(x)*bitCount)-*(pRealData+pit*(y)+(x-1)*bitCount))+(*(pRealData+pit*(y)+(x)*bitCount)-*(pRealData+pit*(y-1)+(x)*bitCount))*(*(pRealData+pit*(y)+(x)*bitCount)-*(pRealData+pit*(y-1)+(x)*bitCount))));if(temp>=t){if(temp+100>255)tempR=255;elsetempR=temp+100;}elsetempR=*(pRealData+pit*(y)+(x)*bitCount);if(bitCount==1){tempG=tempR;tempB=tempR;}else{temp=(int)sqrt((float)((*(pRealData+pit*(y)+(x)*bitCount+1)-*(pRealData+pit*(y)+(x-1)*bitCount+1))*(*(pRealData+pit*(y)+(x)*bitCount+1)-*(pRealData+pit*(y)+(x-1)*bitCount+1))+(*(pRealData+pit*(y)+(x)*bitCount+1)-*(pRealData+pit*(y-1)+(x)*bitCount+1))*(*(pRealData+pit*(y)+(x)*bitCount+1)-*(pRealData+pit*(y-1)+(x)*bitCount+1))));if(temp>=t){if(temp+100>255)tempG=255;elsetempG=temp+100;}elsetempG=*(pRealData+pit*(y)+(x)*bitCount+1);temp=(int)sqrt((float)((*(pRealData+pit*(y)+(x)*bitCount+2)-*(pRealData+pit*(y)+(x-1)*bitCount+2))*(*(pRealData+pit*(y)+(x)*bitCount+2)-*(pRealData+pit*(y)+(x-1)*bitCount+2))+(*(pRealData+pit*(y)+(x)*bitCount+2)-*(pRealData+pit*(y-1)+(x)*bitCount+2))*(*(pRealData+pit*(y)+(x)*bitCount+2)-*(pRealData+pit*(y-1)+(x)*bitCount+2))));if(temp>=t){if(temp+100>255)tempB=255;elsetempB=temp+100;}elsetempB=*(pRealData+pit*(y)+(x)*bitCount+2);}*(pRealData2+pit2*y+x*bitCount2)=tempR;*(pRealData2+pit2*y+x*bitCount2+1)=tempG;*(pRealData2+pit2*y+x*bitCount2+2)=tempB;}}Invalidate();}
这篇关于图像的梯度锐化vc代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!