android Programming Glossary: thresholdimage
How to get HTML source code from url in android? http://stackoverflow.com/questions/6503574/how-to-get-html-source-code-from-url-in-android
Android OpenCV Drawing Hough Lines http://stackoverflow.com/questions/7925698/android-opencv-drawing-hough-lines lines in my frame and draw them back out. Here is my code... hope this helps. Mat mYuv new Mat Mat mRgba new Mat Mat thresholdImage new Mat getFrameHeight getFrameHeight 2 getFrameWidth CvType.CV_8UC1 mYuv.put 0 0 data Imgproc.cvtColor mYuv mRgba Imgproc.COLOR_YUV420sp2RGB.. CvType.CV_8UC1 mYuv.put 0 0 data Imgproc.cvtColor mYuv mRgba Imgproc.COLOR_YUV420sp2RGB 4 Imgproc.cvtColor mRgba thresholdImage Imgproc.COLOR_RGB2GRAY 4 Imgproc.Canny thresholdImage thresholdImage 80 100 3 Mat lines new Mat int threshold 50 int minLineSize.. mYuv mRgba Imgproc.COLOR_YUV420sp2RGB 4 Imgproc.cvtColor mRgba thresholdImage Imgproc.COLOR_RGB2GRAY 4 Imgproc.Canny thresholdImage thresholdImage 80 100 3 Mat lines new Mat int threshold 50 int minLineSize 20 int lineGap 20 Imgproc.HoughLinesP thresholdImage..
|