編輯:關於Android編程
本文地址: http://blog.csdn.net/caroline_wendy
步驟:
復制OpenCV的sdk至工作文件夾.
下載OpenCV的最新android-sdk: OpenCV-2.4.9-android-sdk;
把其中的sdk文件夾, 復制到工作目錄; sdk文件夾裡包含native, java, etc. 三個文件夾.
導入(import)工作目錄的java文件夾, 設置為當前項目的庫.
[項目名]右鍵點擊->Android->Add Library->選擇添加的庫. 即可. 不需要選擇Is Library.
包含需要使用的方法(method), 可以多個.<喎?/kf/ware/vc/" target="_blank" class="keylink">vcD48cD48L3A+PHByZSBjbGFzcz0="brush:java;">/**
*
*/
package com.example.hellomyjni;
/**
* @author Administrator
*
*/
public class JniClient {
static public native String sayName();
static public native int[] grayImage(int[] pixels, int w, int h);
}
使用命令行, 生成頭文件.
進入項目文件夾, 生成JNI的頭文件, 使用命令:
"javah -classpath bin/classes -d jni com.example.hellomyjni.JniClient"
或javah -classpath D:/eclipse-android/android-sdk/platforms/android-17/android.jar;bin/classes -d jni com.example.mycamera.CartoonifierView
包含Android庫.
命令解析:
javah 生成頭文件;
-classpath 使用類的位置(bin/classes), 都是.class文件;
-d jni 需要生成JNI的類(com.example.hellomyjni.JniClient), 包括[package].[classname].
其余參考: http://blog.csdn.net/caroline_wendy/article/details/39032551
需要在jni文件夾內創建Application.mk, 主要負責C++標准的使用(APP_STL), 和需要編譯的庫.
APP_STL := gnustl_static APP_CPPFLAGS := -frtti -fexceptions APP_ABI := armeabi-v7a
LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) #OPENCV_LIB_TYPE:=STATIC OPENCV_INSTALL_MODULES:=on include C:/Users/Administrator/android-workspace/opencv-sdk/native/jni/OpenCV.mk LOCAL_MODULE := HelloMyJni LOCAL_SRC_FILES := HelloMyJni.cpp LOCAL_LDLIBS += -llog -ldl #LOCAL_C_INCLUDES += ./ LOCAL_SRC_FILES += ./sayname.cpp include $(BUILD_SHARED_LIBRARY)
#include#include using namespace cv; #include "com_example_hellomyjni_JniClient.h" #include "sayname.h" JNIEXPORT jstring JNICALL Java_com_example_hellomyjni_JniClient_sayName (JNIEnv *env, jclass) { string str = sayname(); return env->NewStringUTF(str.c_str()); } JNIEXPORT jintArray JNICALL Java_com_example_hellomyjni_JniClient_grayImage (JNIEnv *env, jclass, jintArray buf, jint w, jint h ) { jint *cbuf; cbuf = env->GetIntArrayElements(buf, false); if (cbuf == NULL) { return 0; } Mat imgData(h, w, CV_8UC4, (unsigned char*) cbuf); uchar* ptr = imgData.ptr(0); for (int i = 0; i < w * h; i++) { int grayScale = (int) (ptr[4 * i + 2] * 0.299 + ptr[4 * i + 1] * 0.587 + ptr[4 * i + 0] * 0.114); ptr[4 * i + 1] = grayScale; ptr[4 * i + 2] = grayScale; ptr[4 * i + 0] = grayScale; } int size = w * h; jintArray result = env->NewIntArray(size); env->SetIntArrayRegion(result, 0, size, cbuf); env->ReleaseIntArrayElements(buf, cbuf, 0); return result; }
調用JNI的函數.
package com.example.hellomyjni; import org.opencv.android.OpenCVLoader; import android.app.Activity; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Bitmap.Config; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.widget.ImageView; import android.widget.TextView; public class MainActivity extends Activity{ private ImageView iv; private Bitmap bmp; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); TextView tv = (TextView) findViewById(R.id.text_view); tv.setText(JniClient.sayName()); //recall JNI iv = (ImageView) findViewById(R.id.image_view); bmp = BitmapFactory.decodeResource(getResources(), R.drawable.shoes); int w = bmp.getWidth(); int h = bmp.getHeight(); int[] pixels = new int[w * h]; bmp.getPixels(pixels, 0, w, 0, 0, w, h); int[] resultInt = JniClient.grayImage(pixels, w, h); //recall JNI Bitmap resultImg = Bitmap.createBitmap(w, h, Config.ARGB_8888); resultImg.setPixels(resultInt, 0, w, 0, 0, w, h); iv.setImageBitmap(resultImg); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } static { if (!OpenCVLoader.initDebug()) { } else { System.loadLibrary("HelloMyJni"); } } }
簡介NineoldAndroids是Github上一個著名的動畫庫,簡單來說,NineOldAndroids是一個向下兼容的動畫庫,主要是使低於API 11的系統也能夠使
前面學習總結了平時開發中遇見的各種數據加密方式,最終都會對加密後的二進制數據進行Base64編碼,起到一種二次加密的效果,其實呢Base64從嚴格意義上來說的話不是一種加
用到Media Player,遇到幾個問題,記一下 用法就不說了,使用的時候最好參考一下mediaPlayer的這張圖 第一個錯誤是Medi
好了下面進入正題,我們先看一下實現效果吧:下面來介紹一下代碼: 本思路就是: 1.先到手機中掃描jpeg和png的圖片 2.獲取導圖片的路徑和圖片的父路徑名