Ask Your Question

oded's profile - activity

2018-10-03 21:42:22 -0600 received badge  Popular Question (source)
2016-08-10 03:36:22 -0600 received badge  Enthusiast
2016-08-07 07:06:19 -0600 asked a question Non-rectangular face extraction with openCV

Using this code I can get a rectangle of a face:

std::vector<rect> faces;
//-- Detect faces face_cascade.detectMultiScale( frame_gray, faces, 1.1, 2, 0|CASCADE_SCALE_IMAGE, Size(200, 200) ); How can I get an contour of a face?

2016-05-25 03:13:54 -0600 received badge  Student (source)
2016-05-24 22:19:35 -0600 commented question OpenCV + Swift 2 + CvVideoCameraDelegate

Hey, I'm just working on my company on the same thing, is there a way we could talk? if yes - my mail is oded [at] mdalgorithms [dot] com

2016-05-24 22:19:34 -0600 commented question Video processing with IOS + Swift

I've already integrated opencv into my Swift app with C++ files and have analysis working on Single image. The question is if it's possible also on a video ? Because I saw that CvVideoCamera should be used in UIViewController (which is written in Swift in my case).

2016-05-24 10:16:06 -0600 received badge  Supporter (source)
2016-05-24 05:39:19 -0600 asked a question Video processing with IOS + Swift

I've integrated opencv in Swift IOS project using bridging header (to connect Swift to Objective C) and a Objective C wrapper (to connect Objective C to C++). Using this method I can pass single images from the Swift code, analyse them in the C++ files and get them back.

I've seen that opencv provides CvVideoCamera object that can be integrated with an Objective C UIViewController.

But since my UIViewController are written in Swift I've wondered if this is possible as well?