Android应用程序:增强现实或图像识别

时间:2022-05-23 21:17:26

I am interested in developing an Android Application that employs the Android Devices Camera to detect moving "Targets".

我有兴趣开发一个Android应用程序,它使用Android设备摄像头来检测移动的“目标”。

The three types of targets I need to detect and distinguish between are pedestrians, runners (joggers) and cyclists.

我需要检测和区分的三种类型的目标是行人,跑步者(慢跑者)和骑自行车者。

The augmented realities SDK's I have looked at only seem to offer face recognition which doesn't sound like they can detect entire people.

我所看到的增强现实SDK似乎只提供了面部识别,听起来并不像他们能够检测到整个人。

Have i misunderstood what Augmented Realities SDK can provide?

我误解了Augmented Realities SDK可以提供的内容吗?

1 个解决方案

#1


1  

There is a big list of AR SDKs (also for Android platform):

有很多AR SDK(也适用于Android平台):

Augmented reality SDKs

增强现实SDK

However, to be honest I strongly doubt that you will find any (doesn't matter free or payed) SDK for your task. It is to specific so you should probably write it by yourself using OpenCV.

但是,说实话,我强烈怀疑你会发现任何(无关紧要的免费或付费)SDK。这是具体的,所以你应该使用OpenCV自己编写它。

OpenCV will allow you to detect objects (more or less) and then you will need to write some algorithm for classification. I would recommend classification based on object speed.

OpenCV将允许您检测对象(或多或少),然后您将需要编写一些算法进行分类。我建议根据物体速度进行分类。

Then, when you have your object classified you can add any AR SDK to add something to your picture.

然后,当您对对象进行分类时,您可以添加任何AR SDK以向您的图片添加内容。

#1


1  

There is a big list of AR SDKs (also for Android platform):

有很多AR SDK(也适用于Android平台):

Augmented reality SDKs

增强现实SDK

However, to be honest I strongly doubt that you will find any (doesn't matter free or payed) SDK for your task. It is to specific so you should probably write it by yourself using OpenCV.

但是,说实话,我强烈怀疑你会发现任何(无关紧要的免费或付费)SDK。这是具体的,所以你应该使用OpenCV自己编写它。

OpenCV will allow you to detect objects (more or less) and then you will need to write some algorithm for classification. I would recommend classification based on object speed.

OpenCV将允许您检测对象(或多或少),然后您将需要编写一些算法进行分类。我建议根据物体速度进行分类。

Then, when you have your object classified you can add any AR SDK to add something to your picture.

然后,当您对对象进行分类时,您可以添加任何AR SDK以向您的图片添加内容。