日韩国产欧美精品一区二区三区,亚洲男女自偷自拍图片另类,亚洲欧美久久久,亚洲国产成人一区

以文本方式查看主題

-  曙海教育集團論壇  (http://m.qqmingzi123.com/bbs/index.asp)
--  DSP系統(tǒng)和硬件開發(fā)討論區(qū)  (http://m.qqmingzi123.com/bbs/list.asp?boardid=5)
----  李現(xiàn)路:DSP6000圖像位置移動與變形的典型算法(四)  (http://m.qqmingzi123.com/bbs/dispbbs.asp?boardid=5&id=85)

--  作者:admin
--  發(fā)布時間:2009-12-3 13:49:29
--  李現(xiàn)路:DSP6000圖像位置移動與變形的典型算法(四)

  李現(xiàn)路:DSP6000圖像位置移動與變形的典型算法(四)

 

五、圖像的旋轉實驗


數(shù)學表達式原理:


下面我們來推導一下旋轉運算的變換公式。如下圖所示,點(x0,y0)經過旋轉θ度后

坐標變成(x1,y1)。其數(shù)學表達式為:

X0=x1cos(θ)+y1sin(θ)+ccos(θ)-dsin(θ)+a ;

Y0=-xsin(θ)+y1cos(θ)+csin(θ)-dcos(θ)+ b


算法的C語言代碼:


/*圖像旋轉參數(shù)*/

Float fAngle=3.1415927/3; //旋轉的角度

*畫矩形邊框函數(shù)*/

Void drawRectangle();

*計算圖像旋轉參數(shù)*/

Void computeParameter();

/*進行圖像旋轉處理*/

void rotate()

{

         int i,j,intInc;

         int intCapYInc;

         int intCapX,intCapY;

        

         /*進行圖像旋轉,重新賦值*/

         //方框內奇數(shù)行

         for(i=intALines;i<intDLines;i++)

         {

             for(j=intAPixels;j<intDPixels;j++)

             {

            intInc = i*2;  


            intCapX    = (int)(j*cosAngle + intInc*sinAngle + f1 + 0.5);

            intCapYInc = (int)(intInc*cosAngle - j*sinAngle + f1 + 0.5);          

                     

            if((intCapYInc%2)==0)

            {

                     intCapY = intCapYInc/2;

            }

            else

            {

                     intCapY = (intCapYInc-1)/2+numLines/2;

            }

            

            //判斷是否在原圖范圍內

            if((intCapX>=0) && (intCapX<numPixels) && (intCapY>=0) && (intCapY<numLines))  

            {

                                //傳送亮度信號

                                *(Uint8 *)(tempYbuffer + i*numPixels + j) = *(Uint8 *)(capYbuffer + intCapY*numPixels + intCapX);                                                                         

                 }

            else

            {

                      *(Uint8 *)(tempYbuffer + i*numPixels + j) = 0xFF;

            }

                                

                   }       

         }

                          

         //方框內偶數(shù)行

         for(i=numLines/2+intALines;i<numLines/2+intDLines;i++)

         {

             for(j=intAPixels;j<intDPixels;j++)

             {                

            intInc = (i-numLines/2)*2 + 1;


            intCapX    = (int)(j*cosAngle + intInc*sinAngle + f1 + 0.5);

            intCapYInc = (int)(intInc*cosAngle - j*sinAngle + f1 + 0.5);          

                     

            if((intCapYInc%2)==0)

            {

                     intCapY = intCapYInc/2;

            }

            else

            {

                     intCapY = (intCapYInc-1)/2+numLines/2;

            }            


            //判斷是否在原圖范圍內

            if((intCapX>=0) && (intCapX<numPixels) && (intCapY>=0) && (intCapY<numLines))  

            {

                                //傳送亮度信號

                                *(Uint8 *)(tempYbuffer + i*numPixels + j) = *(Uint8 *)(capYbuffer + intCapY*numPixels + intCapX);                                                                         

                 }

            else

            {

                      *(Uint8 *)(tempYbuffer + i*numPixels + j) = 0xFF;

            }

                                

                   }       

         }       

}



                                              曙海教育


                                            曙海嵌入式學院


                        (課程:DSP培訓,FPGA培訓,MTK培訓,Android培訓,iPhone培訓)


                                           電話:021-51875830


                                           網(wǎng)址:http://www.51qianru.cn


                                              講師:李現(xiàn)路


                          版權所有-曙海教育 歡迎轉摘,轉摘請注明作者和出處


主站蜘蛛池模板: 宝兴县| 安新县| 勃利县| 浏阳市| 突泉县| 芜湖市| 瑞金市| 平阴县| 东乌珠穆沁旗| 萍乡市| 穆棱市| 泗水县| 长乐市| 东明县| 罗江县| 浙江省| 金寨县| 文化| 泗洪县| 安陆市| 南康市| 息烽县| 宕昌县| 南开区| 兴安盟| 冀州市| 安阳市| 富锦市| 邯郸市| 南靖县| 水城县| 达拉特旗| 万源市| 南雄市| 上思县| 花莲市| 河曲县| 射阳县| 吉首市| 辉南县| 灵丘县|