Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android提高十六篇之使用NDK把彩圖轉換灰度圖

Android提高十六篇之使用NDK把彩圖轉換灰度圖

編輯:Android開發實例

     在Android上使用JAVA實現彩圖轉換為灰度圖,跟J2ME上的實現類似,不過遇到頻繁地轉換或者是大圖轉換時,就必須使用NDK來提高速度了。本文主要通過JAVA和NDK這兩種方式來分別實現彩圖轉換為灰度圖,並給出速度的對比。

先來簡單地介紹一下Android的NDK使用步驟:

以NDK r4為例,或許以後新版的NDK的使用方法略有不同。
1、下載支持C++的android-ndk-r4-crystax,支持C++的話可玩性更強......
2、下載cygwin,選擇
ftp://mirrors.kernel.org這個鏡像,搜索  Devel Install 安裝 gcc 和 make 等工具;

在搜索框裡分別搜索gcc和make,必須是 Devel Install 欄的。

3、Cygwin安裝目錄下,找到home/username的目錄下的.bash_profile文件,打開文件在最後加上:
    NDK=/cygdrive/d/android-ndk-r4-windows/android-ndk-r4
   export NDK
PS:假設安裝在d:\android-ndk-r4-windows\android-ndk-r4。
4、運行cygwin,通過cd命令去到NDK\samples\例子目錄\,運行$NDK/ndk-build來編譯該目錄下的Android.mk

以下是個人習慣.......
5、安裝Eclipse的CDT,官方下載cdt安裝包,解壓縮後把plugins和feagures 復制覆蓋到eclipse文件夾下即可
6、去到系統屬性->環境變量->Path添加"D:\cygwin\bin"(假設cygwin安裝在D:下),重啟計算機,然後就可以在Eclipse裡面建立基於cygwin的C/C++工程了,先通過這一步來驗證NDK的程序能夠編譯成功,然後再通過第4步來生成SO文件。

接下來看看本文程序運行的效果:

從轉換灰度圖的耗時來說,NDK的確比JAVA所用的時間短不少。

main.xml源碼如下:

 

  1. <?xml version="1.0" encoding="utf-8" ?>   
  2. - <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> 
  3.   <Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/btnJAVA" android:text="使用JAVA轉換灰度圖" />   
  4.   <Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/btnNDK" android:text="使用NDK轉換灰度圖" />   
  5.   <ImageView android:id="@+id/ImageView01" android:layout_width="fill_parent" android:layout_height="fill_parent" />   
  6.   </LinearLayout> 

主程序testToGray.java的源碼如下:

  1. package com.testToGray;  
  2.  
  3. import android.app.Activity;  
  4. import android.graphics.Bitmap;  
  5. import android.graphics.Bitmap.Config;  
  6. import android.graphics.drawable.BitmapDrawable;  
  7. import android.os.Bundle;  
  8. import android.view.View;  
  9. import android.widget.Button;  
  10. import android.widget.ImageView;  
  11.  
  12. public class testToGray extends Activity {  
  13.     /** Called when the activity is first created. */ 
  14.     Button btnJAVA,btnNDK;  
  15.     ImageView imgView;  
  16.     @Override 
  17.     public void onCreate(Bundle savedInstanceState) {  
  18.         super.onCreate(savedInstanceState);  
  19.         setContentView(R.layout.main);  
  20.         this.setTitle("使用NDK轉換灰度圖---hellogv");  
  21.         btnJAVA=(Button)this.findViewById(R.id.btnJAVA);  
  22.         btnJAVA.setOnClickListener(new ClickEvent());  
  23.           
  24.         btnNDK=(Button)this.findViewById(R.id.btnNDK);  
  25.         btnNDK.setOnClickListener(new ClickEvent());  
  26.         imgView=(ImageView)this.findViewById(R.id.ImageView01);  
  27.     }  
  28.     class ClickEvent implements View.OnClickListener{  
  29.  
  30.         @Override 
  31.         public void onClick(View v) {  
  32.             if(v==btnJAVA)  
  33.             {  
  34.                 long current=System.currentTimeMillis();  
  35.                 Bitmap img=ConvertGrayImg(R.drawable.cat);  
  36.                 long performance=System.currentTimeMillis()-current;  
  37.                 //顯示灰度圖  
  38.                 imgView.setImageBitmap(img);  
  39.                 testToGray.this.setTitle("w:"+String.valueOf(img.getWidth())+",h:"+String.valueOf(img.getHeight())  
  40.                         +" JAVA耗時 "+String.valueOf(performance)+" 毫秒");  
  41.             }  
  42.             else if(v==btnNDK)  
  43.             {  
  44.                 long current=System.currentTimeMillis();  
  45.                   
  46.                 //先打開圖像並讀取像素  
  47.                 Bitmap img1=((BitmapDrawable) getResources().getDrawable(R.drawable.cat)).getBitmap();  
  48.                 int w=img1.getWidth(),h=img1.getHeight();  
  49.                 int[] pix = new int[w * h];  
  50.                 img1.getPixels(pix, 0, w, 0, 0, w, h);  
  51.                 //通過ImgToGray.so把彩色像素轉為灰度像素  
  52.                 int[] resultInt=LibFuns.ImgToGray(pix, w, h);  
  53.                 Bitmap resultImg=Bitmap.createBitmap(w, h, Config.RGB_565);  
  54.                 resultImg.setPixels(resultInt, 0, w, 0, 0,w, h);  
  55.                 long performance=System.currentTimeMillis()-current;  
  56.                 //顯示灰度圖  
  57.                 imgView.setImageBitmap(resultImg);  
  58.                 testToGray.this.setTitle("w:"+String.valueOf(img1.getWidth())+",h:"+String.valueOf(img1.getHeight())  
  59.                         +" NDK耗時 "+String.valueOf(performance)+" 毫秒");  
  60.             }  
  61.         }  
  62.     }  
  63.       
  64.     /**  
  65.      * 把資源圖片轉為灰度圖  
  66.      * @param resID 資源ID  
  67.      * @return  
  68.      */ 
  69.     public Bitmap ConvertGrayImg(int resID)  
  70.     {  
  71.         Bitmap img1=((BitmapDrawable) getResources().getDrawable(resID)).getBitmap();  
  72.           
  73.         int w=img1.getWidth(),h=img1.getHeight();  
  74.         int[] pix = new int[w * h];  
  75.         img1.getPixels(pix, 0, w, 0, 0, w, h);  
  76.           
  77.         int alpha=0xFF<<24;  
  78.         for (int i = 0; i < h; i++) {    
  79.             for (int j = 0; j < w; j++) {    
  80.                 // 獲得像素的顏色    
  81.                 int color = pix[w * i + j];    
  82.                 int red = ((color & 0x00FF0000) >> 16);    
  83.                 int green = ((color & 0x0000FF00) >> 8);    
  84.                 int blue = color & 0x000000FF;    
  85.                 color = (red + green + blue)/3;    
  86.                 color = alpha | (color << 16) | (color << 8) | color;    
  87.                 pix[w * i + j] = color;  
  88.             }  
  89.         }  
  90.         Bitmap result=Bitmap.createBitmap(w, h, Config.RGB_565);  
  91.         result.setPixels(pix, 0, w, 0, 0,w, h);  
  92.         return result;  
  93.     }  

 

封裝NDK函數的JAVA類LibFuns.java的源碼如下:

  1. package com.testToGray;  
  2. public class LibFuns {  
  3.     static {  
  4.         System.loadLibrary("ImgToGray");  
  5.     }  
  6.  
  7.    /**  
  8.     * @param width the current view width  
  9.     * @param height the current view height  
  10.     */ 
  11.       
  12.     public static native int[] ImgToGray(int[] buf, int w, int h);  

 

彩圖轉換為灰度圖的ImgToGray.cpp源碼:

  1. #include <jni.h>  
  2. #include <stdio.h>  
  3. #include <stdlib.h>  
  4.  
  5. extern "C" {  
  6. JNIEXPORT jintArray JNICALL Java_com_testToGray_LibFuns_ImgToGray(  
  7.         JNIEnv* env, jobject obj, jintArray buf, int w, int h);  
  8. }  
  9. ;  
  10.  
  11. JNIEXPORT jintArray JNICALL Java_com_testToGray_LibFuns_ImgToGray(  
  12.         JNIEnv* env, jobject obj, jintArray buf, int w, int h) {  
  13.     jint *cbuf;  
  14.  
  15.     cbuf = env->GetIntArrayElements(buf, false);  
  16.     if (cbuf == NULL) {  
  17.         return 0; /* exception occurred */ 
  18.     }  
  19.     int alpha = 0xFF << 24;  
  20.     for (int i = 0; i < h; i++) {  
  21.         for (int j = 0; j < w; j++) {  
  22.             // 獲得像素的顏色  
  23.             int color = cbuf[w * i + j];  
  24.             int red = ((color & 0x00FF0000) >> 16);  
  25.             int green = ((color & 0x0000FF00) >> 8);  
  26.             int blue = color & 0x000000FF;  
  27.             color = (red + green + blue) / 3;  
  28.             color = alpha | (color << 16) | (color << 8) | color;  
  29.             cbuf[w * i + j] = color;  
  30.         }  
  31.     }  
  32.  
  33.     int size=w * h;  
  34.     jintArray result = env->NewIntArray(size);  
  35.     env->SetIntArrayRegion(result, 0, size, cbuf);  
  36.  
  37.     env->ReleaseIntArrayElements(buf, cbuf, 0);  
  38.  
  39.     return result;  
  40. }  
  41.  

 

Android.mk的源碼:

  1. LOCAL_PATH:= $(call my-dir)  
  2.  
  3. include $(CLEAR_VARS)  
  4.  
  5. LOCAL_MODULE    := ImgToGray  
  6. LOCAL_SRC_FILES := ImgToGray.cpp  
  7.  
  8. include $(BUILD_SHARED_LIBRARY)  

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved