Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Computer Vision with Mathematica

Does anybody here do computer vision work on Mathematica? I would like to know what external libraries are available for doing that. The built in image processing functions are not enough. I am looking for things like SURF, stereo, camera calibration, multi-view geometry etc.

How difficult would it be to wrap OpenCV for use in Mathematica?

like image 284
Yogi Avatar asked Jun 01 '09 17:06

Yogi


1 Answers

Apart from the extensive set of image processing tools that are now (version 8) natively present in Mathematica, and which include a number of CV algorithms like finding morphologic objects, image segmentation and feature detection (see figure below), there's the new LibraryLink functionality, which makes working with DLLs very easy. You wouldn't have to change OpenCV much to be able to call it from Mathematica. Just some wrappers for the functions to be called and you're basically done.

enter image description here

like image 72
Sjoerd C. de Vries Avatar answered Sep 22 '22 07:09

Sjoerd C. de Vries