Ask Your Question

vikas vasan's profile - activity

2016-10-10 00:03:58 -0600 asked a question Why there is not Android version in 2.4.13 release?

Hi,

I wonder why OpenCV has not released Android version along with 2.4.13 release. Does any one have idea?

2016-06-30 04:57:16 -0600 asked a question When Android studio compatible opencv version will be released?

Hi,

I just want to know that when Android studio compatible opencv version will be released?

2013-03-09 09:12:59 -0600 asked a question How to use SeekBar along with org.opencv.android.JavaCameraView in Layout xml file?

I have created color Detection application in opencv Android. its main lauout.xml file is as below:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

         <org.opencv.android.JavaCameraView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/color_blob_detection_activity_surface_view" />

</LinearLayout>

it is working fine. but i want to add SeekBar in my current Activity..like...

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <SeekBar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:max="100" />

         <org.opencv.android.JavaCameraView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/color_blob_detection_activity_surface_view" />

</LinearLayout>

But it above code only displays SeekBar in my Activity. No video is displayed. It is necessary that layout.xml file must only have org.opencv.android.JavaCameraView? It is possible to use SeekBar or Textview with it?