Ask Your Question
1

over-water drone to recognize ocean vessels

asked 2013-11-17 15:05:18 -0600

rondrone gravatar image

Has anybody heard about openCV being used to recognize ships and other vessels in open water. Doesn't need to actually recognize the type of ship, just recognize that a shape probably IS a ship. Ideally via a fairly wide-angle field of view, with ships potentially out to the horizon.

Am just getting started on this, so any thoughts/ramblings/advice would be greatly appreciated!

edit retag flag offensive close merge delete

Comments

Hello randron!

Did you solve your problem?

I am very interested in the same question.

Could I contact you privately?

eloy.pena gravatar imageeloy.pena ( 2019-02-18 09:09:23 -0600 )edit

2 answers

Sort by ยป oldest newest most voted
4

answered 2013-11-18 11:26:43 -0600

In a quick analysis, I think that detecting boats and vessels in an open water scenery would be easy using a learn-based detecting algorithm. Since the background is always very similar and with almost no noise, an object like a boat will contrast a lot with the surrounding background, which is the ideal situation for these kind of algorithms.

OpenCV offers implementation of some of these algorithms, such as Viola & Jones work, widely known for being successfully applied to face detection. There are other implementations, such as HOG classification with a SVM (Support Vector Machine) machine-learning algorithm, AdaBoost feature evaluator and others.

Which solution to choose depends on the demands of your problem. Is performance as important as detection accuracy? Is it ok to miss a small percentage of objects? How much false-positives are admissible? etc.

The downside of this approach is that you need to possess a large image database of the objects you want to detect on the background the application is going to be performing on.

edit flag offensive delete link more

Comments

Excellent, a great starting point - thanks!

rondrone gravatar imagerondrone ( 2013-11-21 19:48:55 -0600 )edit
0

answered 2013-11-18 02:00:58 -0600

Look at the examples for pedestrian detection and face detection/recognition. From there you can retrain some of the learning algorithms with ships DB ;)

edit flag offensive delete link more

Question Tools

Stats

Asked: 2013-11-17 15:05:18 -0600

Seen: 1,210 times

Last updated: Nov 18 '13