Ask Your Question

AnthonyKeane's profile - activity

2014-02-17 10:40:43 -0600 received badge  Enlightened (source)
2014-02-17 10:40:43 -0600 received badge  Good Answer (source)
2013-08-12 03:15:12 -0600 received badge  Nice Answer (source)
2013-08-08 05:40:10 -0600 received badge  Teacher (source)
2013-07-10 00:07:28 -0600 answered a question [Android - Native Camera] Setting ISO (and other camera parameters)

You can get access as you describe, I did an Override of

JavaCameraView.java

, then in the

initializeCamera

I added my desired settings

2013-07-09 16:26:50 -0600 received badge  Scholar (source)
2013-07-09 03:29:24 -0600 received badge  Student (source)
2013-07-09 01:37:52 -0600 asked a question Is the Erode and Dilate images mixed up in the Doc

In reading This Page it appears Dilate and Erode are transposed.

Dilate expands the Black area? Erode reduces the black area?

Erode-----Dilate---->image description

image description-----Erode----->Erode

Should a Bug report be filed?

2013-06-28 10:22:28 -0600 received badge  Editor (source)
2013-06-28 10:11:57 -0600 answered a question How to work with OPENCV4ANDROID- in android studio
  • Download OpenCV-2.4.5-android-sdk.zip from OpenCV site
  • Extract to where ever as OpenCV-2.4.5-android-sdk, mine happened to be

    /home/anthony/Documents/OpenCV-2.4.5-android-sdk/

  • Open Android Studio and choose Import

  • Select the folder to import

    /home/anthony/Documents/OpenCV-2.4.5-android-sdk/sdk/java/

     yours will be a little different, 
     don't worry, just chose where you 
     extracted OpenCV-2.4.5-android-sdk
    
  • Once the Import wizard finishes, build the app with menu

Build -> Rebuild Project

  • Close Project

  • Create New or Open existing project
  • Then

File->Import Module

  • This time select

/home/anthony/Documents/OpenCV-2.4.5-android-sdk/sdk/java/XXX.iml

mine was sdk.iml, but yours could be anything but there will be only one

iml file

![] (/upfiles/13724316303530617.png)(http://)

You can now start using OpenCV functions, start by typing

import org.

once you type the period Android Studio should drop a list of options one of which is

opencv

image description

The rest is up to you.

2013-06-28 08:59:10 -0600 received badge  Supporter (source)