FastCV Sample Application  1.7.1
FilterCorr.h
00001 #ifndef FILTERCORR_H
00002 #define FILTERCORR_H
00003 
00004 /*
00005  * Copyright (c) 2012 Qualcomm Technologies Incorporated. All Rights Reserved.
00006  * Qualcomm Technologies Proprietary and Confidential.
00007  *
00008  * @file Definition of FastCV Filter Correlation Sample Java Native Interface (JNI).
00009  */
00010 
00011 //==============================================================================
00012 // Include Files
00013 //==============================================================================
00014 #include <jni.h>
00015 
00016 //==============================================================================
00017 // Declarations
00018 //==============================================================================
00019 extern "C" {
00020 
00021   //------------------------------------------------------------------------------
00024   //------------------------------------------------------------------------------
00025   JNIEXPORT void JNICALL Java_com_qualcomm_fastcvdemo_apis_imageProcessing_FilterCorr_setKernelType
00026   (
00027     JNIEnv*  env,
00028     jobject  obj,
00029     int kernelType
00030   );
00031 
00032 
00033   //------------------------------------------------------------------------------
00038   //------------------------------------------------------------------------------
00039   JNIEXPORT void JNICALL Java_com_qualcomm_fastcvdemo_apis_imageProcessing_FilterCorr_update
00040   (
00041     JNIEnv*     env,
00042     jobject     obj,
00043     jbyteArray  img,
00044     jint        w,
00045     jint        h
00046   );
00047 
00048   //---------------------------------------------------------------------------
00050   //---------------------------------------------------------------------------
00051   JNIEXPORT void JNICALL Java_com_qualcomm_fastcvdemo_apis_imageProcessing_FilterCorr_cleanup
00052   (
00053     JNIEnv * env,
00054     jobject obj
00055   );
00056 
00057 }
00058 
00059 #endif // FILTERCORR_H
 All Data Structures Functions Variables