Ask Your Question

Dali's profile - activity

2017-01-21 09:32:33 -0600 received badge  Famous Question (source)
2016-05-26 12:36:49 -0600 received badge  Notable Question (source)
2015-10-22 17:39:02 -0600 received badge  Notable Question (source)
2015-02-07 14:47:01 -0600 received badge  Popular Question (source)
2014-09-01 07:53:28 -0600 received badge  Popular Question (source)
2013-05-27 02:06:06 -0600 commented question How to recognize hand on android devices

Convert the source image to the HSV color space, and then use the Core.inRange function to capture a specific color, I set the skin color range from (0,30,20,0) to (40,255,255,0), (I'm not sure whether it is appropriate) the final effect is not ideal, too. Maybe need to do some more complex processing

2013-03-21 22:25:18 -0600 commented answer How to Automatic focusing?

Thank you, Sammy!

2013-03-21 05:45:44 -0600 commented question How to Automatic focusing?

How to get the focus of a camera ,and reset the focus by ourselves?

2013-03-21 05:33:33 -0600 asked a question How to Automatic focusing?

I'm writing gesture order recognition project,want to realize automatic focusing hand function,but i don't know how to realize, will you provide advice, it is best to provide the relevant code, and how about android platform?

2013-01-28 05:14:06 -0600 received badge  Student (source)
2013-01-28 03:11:44 -0600 asked a question How to recognize the steady path ?

How to recognize the steady path, in other words, if there is a steady line, how do i to recognize from one extremity to another extremity along the line?

2013-01-18 22:01:47 -0600 commented answer How to recognize hand on android devices

Hi,rics,I have visited your website,saw the MINDdroidCV,but I can't watch the videos, can you show me them? By the way ,could you calculate the distance between the robot from and light blob?

2013-01-04 02:46:27 -0600 commented answer How to recognize hand on android devices

I used convexHull and convexityDefects function to find hand convex hull and the convexity defects of it in these day,but i didn't know what should to do for distinguish them yet? By the way,if i want to read the number that the gesture showed,how to realize? I searched in the internet much ,but nothing helpful. Can you help me ? I am a fresher, really appreciate !

2013-01-02 18:27:58 -0600 commented answer Convexity Defects in OpenCV 2.4.2

Do you know how to get the startIdx or defectPtIdx from the convexityDefects function in OpenCV4Android library?

2012-12-27 20:59:10 -0600 commented answer How to recognize hand on android devices

Thank you,rics! I already recognized the skin,then i have to distinguish hand from face.Do you have good advice?

2012-12-27 02:42:22 -0600 commented answer How to recognize hand on android devices

I write the follow code according to handDetection.cpp,but the result is negative .What's wrong?By the way do you know which functions in opencv-android library can replace the "cvAnd" and "cvOr" functions?

the code :

Scalar hsv_min = new Scalar(0,30,80,0); Scalar hsv_max = new Scalar(0,30,80,0); Imgproc.cvtColor(src, hsv_image, Imgproc.COLOR_BGR2HSV); Core.inRange(hsv_image, hsv_min, hsv_max, hsv_mask); Utils.matToBitmap(hsv_mask, bmp);
image.setImageBitmap(bmp);

2012-12-27 01:29:00 -0600 commented answer How can i open the smartphone front camera use the VideCapture method

Thank you,i have opened the front camera.

2012-12-22 01:24:49 -0600 asked a question How to recognize hand on android devices

Anyone can tell me how to recognize hand exactly in Android System ,better use algorithm to realize.

2012-12-22 01:02:20 -0600 answered a question How I use front camera with new OpenCV 2.4.3 for android?

Does the problem solved ? What method be used to open the front camera ?

2012-12-22 00:54:45 -0600 asked a question How can i open the smartphone front camera use the VideCapture method

I know "VideoCapure camera = new VideoCapture(Highgui.CV_CAP_ANDROID)" can open the back camera,so if i want to open the front camera what parameter i should put in?

2012-12-22 00:29:17 -0600 answered a question OpenCV Android, testing on a Galaxy S1...

How can i open the front camera use the VideCapture method ! I know "VideoCapure camera = new VideoCapture(Highgui.CV_CAP_ANDROID)" can open the back camera,so if i want to open the front camera what parameter i should put in?