Ask Your Question

Siyad's profile - activity

2019-03-18 09:13:37 -0600 received badge  Famous Question (source)
2017-10-16 14:11:19 -0600 received badge  Notable Question (source)
2017-03-28 14:51:56 -0600 received badge  Popular Question (source)
2016-02-12 21:09:41 -0600 received badge  Organizer (source)
2016-02-12 12:10:04 -0600 commented answer object detection in nonuniform illumination

thanks for your reply, Can the quadric method successfully replace the morphologyex function? Since there is no support of morphologyEx in Opencv 3.0 and above with gpu(cuda), I need an exact alternative of the function. Also what is its alternative in cuda filters which can use for background subtraction in non uniform illumination

2016-02-11 21:32:48 -0600 asked a question morphologyex function in cuda opencv3.0

I am working in an opencv project which usese the morphologyex function. Now I am trying to do it with gpu support. When I compile the opencv 3.0 with cuda 7.5 support, it accepts most of the functions except the morphologyEx Whereas it supports in the opencv 2.4.9 as gpu::morphologyEx. How can I use this function in OpenCV 3.0 or 3.1. Or please suggest me if there is any alternative of this function in cuda. Thanks in advance.

2016-02-11 21:22:50 -0600 received badge  Supporter (source)
2016-02-11 21:22:40 -0600 received badge  Scholar (source)
2015-07-13 04:36:38 -0600 received badge  Student (source)
2015-07-13 01:08:58 -0600 asked a question object detection in nonuniform illumination

I am performing feature detection in a video/live stream/image using OpenCV C++. The lighting condition varies in different parts of the video, leading to some parts getting ignored while transforming the RGB images to binary images. The lighting condition in a particular portion of the video also changes over the course of the video. I tried the 'Histogram equalization' function, But it didn't help. I got a working solution in MATLAB in the following link

http://in.mathworks.com/help/images/e...

But I'm not aware of MATLAB functions so I can't use this function in OpenCV.

Can you suggest the alternative of this MATLAB code in OpenCV C++ ?

Thanks in Advance...