Ask Your Question

ashokreddyvit's profile - activity

2013-03-29 00:34:03 -0600 asked a question doubts on how to calculate frame processing rate

we are implementing the paper which is "REAL TIME VIDEO PROCESSING USING OPENCV USING ANDROID SMARTPHONE". we need to compare the frame processing rates of both JAVA implemented code and native programming code using OPENCV.How can we find the frame processing rates?

2013-03-28 07:33:16 -0600 asked a question doubts in opencv tutorial4 in eclipse
 public void onCameraViewStarted(int width, int height) {
        mRgba = new Mat(height, width, CvType.CV_8UC4);
        mIntermediateMat = new Mat(height, width, CvType.CV_8UC4);
        mGrayMat = new Mat(height, width, CvType.CV_8UC1);

can someone explain me what are these CvType.CV_8UC4 and CV_8UC1??? this is from the tutorials provided by opencv for android

2013-03-26 10:21:06 -0600 received badge  Student (source)
2013-03-26 05:38:29 -0600 asked a question how to link webcam to android emulator

i am doing a project using opencv on android..i needed the emulator to connect with webcam but it is always showing some window with square boxes when i run..can anybody tell me how to link android emulator to webcam

2013-03-19 01:36:48 -0600 asked a question how to use NDK

can anyone provide me a code snippet showing how to use NDK in android programming..how to integrate C code in JAVA programming??