Video processing in Android

后端 未结 3 1580
广开言路
广开言路 2020-12-04 16:04

I\'m using Android 2.2 with Eclipse.

I would like to make an application that captures video, and for each frame, its send it as a bitmap to a method that processes

3条回答
  •  一整个雨季
    2020-12-04 16:26

    If you want to do more complicated real-time video processing, I would highly recommend OpenCV for Android.

    OpenCV is a computer vision library that enables you to process video in real-time, and it has libraries to perform simple tasks like detecting edges or more complicated tasks like detecting faces and matching features.

    You can get OpenCV working in your Android cellphone in one day, especially because it includes extensive documentation and examples.

提交回复
热议问题