Ask Your Question

basheer's profile - activity

2019-07-11 07:19:48 -0600 received badge  Notable Question (source)
2017-04-12 23:38:09 -0600 received badge  Popular Question (source)
2015-01-24 13:00:46 -0600 received badge  Necromancer (source)
2014-12-06 17:31:42 -0600 answered a question 2D line fitting using RANSAC

According to this SO answer, the OpenCV FitLine function already does this.

2014-01-11 05:07:44 -0600 received badge  Nice Question (source)
2013-05-26 00:07:34 -0600 commented question gpu's hough probabilistic threshold parameter

is it a missing feature or just bad naming of variables or parameters?

2013-05-25 23:24:57 -0600 commented question OpenCV + CUDA + OSX (10.8.3)

hmmm... interesting... are you sure everything worked? Did u compile stuff that use gpu module? Oh, well. I probably messed something up back then (I'm working on Ubuntu now and it works easier, I think)

2013-05-20 21:50:52 -0600 commented question OpenCV + CUDA + OSX (10.8.3)

I spent a couple of days trying to do the same on my macbook in OS 10.8... I ended up installing Ubuntu and doing it from there (was much easier with less bugs and errors). Good luck!

2013-05-16 16:44:57 -0600 asked a question gpu's hough probabilistic threshold parameter

Why does the cv::gpu::HoughLinesP method not have a threshold parameter in it? What do I do if I wanted something like a threshold parameter? Is the maxLines parameter effectively the same?

BTW I'm using the most recent master branch version of OpenCV...

2013-05-14 12:22:28 -0600 received badge  Scholar (source)
2013-05-02 19:34:11 -0600 asked a question Does the canny method apply Gaussian Blur?

I was just wondering whether the canny() method in openCV applies a gaussian blur or not (I want to know whether I should use a gaussian blur before applying canny). Also, if it does, what parameter does it use by default for the blur?

It doesn't mention blur in the docs. However, the canny example here applies blur before applying canny(). So, I'm guessing the answer is no. I just wanted to make sure.

I went through the source code for canny(), but it doesn't explicitly call gaussian blur. I was thinking maybe it manually applies it (but I can't really read the source and understand it)...

I'm using openCV 2.4.5 btw

2013-04-07 15:52:50 -0600 asked a question how do I generate the Java bindings for the gpu module?

So, I recently found out (from here) that the new Java bindings for openCV (as of 2.4.4) don't include the gpu module.

How would I go about generating the modules myself? Can someone go over how this would be done (a summary or something would be fine)? Links, hints, anything...

Also, is this currently being worked on by the openCV team?

2013-04-04 22:10:55 -0600 received badge  Student (source)
2013-04-04 00:02:51 -0600 commented answer Can't build opencv2.4.4 with java support [on Ubuntu 12.04]

nevermind my old comment. I was confusing this with another question...

2013-04-01 15:15:55 -0600 commented answer Can't build opencv2.4.4 with java support [on Ubuntu 12.04]

also, for the record, I found that using Oracle JDK 7 is better than 6 (less errors to deal with)...

2013-04-01 15:11:53 -0600 commented answer Can't build opencv2.4.4 with java support [on Ubuntu 12.04]

@Andrey I solved that specific problem by fixing a bug that I reported here.

2013-04-01 15:09:12 -0600 commented answer [yes or no question] Is it possible to use the gpu module using the new Java bindings ?

Thanks for your answer. Is there any way I can use the gpu module using the Java bindings? Would I have to write my own JNI stuff? Is there anyone currently working on this (perhaps I could help instead of working alone)?

2013-04-01 02:20:46 -0600 received badge  Editor (source)
2013-04-01 02:19:38 -0600 asked a question [yes or no question] Is it possible to use the gpu module using the new Java bindings ?

Background: I've spent days figuring out ways to fix errors while compiling openCV in the new java bindings thing (I'm on 32-bit Ubuntu 10.04). I finally managed to get openCV 2.4.9 to compile using cmake (with no errors) with all the needed modules (java, gpu, python etc.) and with CUDA enabled. After the whole thing builds (again, no errors), I create an Eclipse project (all according to the tutorial here), and I can use the core modules and others (the example code runs fine). HOWEVER, I can't use the gpu module at all (it doesn't show up when I try to import it).

Summary: Once again, I used the WITH_CUDA=ON flag when I did cmake (and I checked the output, and it did actually build and create folders and .o and .a files for gpu stuff, but it never created the .java files for the gpu module, and so I can't access the gpu module in Java).

So, my question is: Is it even possible to use the gpu module using the new Java bindings? Or is there some sort of limitation with this new Java bindings thing? (I really have no idea) If it is possible, then I must be doing something wrong (I might open another question to solve that). But I'd first like to know whether it is possible or not.

2013-03-30 02:39:50 -0600 commented answer Can't build opencv2.4.4 with java support [on Ubuntu 12.04]

I'm still having the same problem, although I have Oracle JDK 6, Apache Ant 1.8, and Python 2.6. Of course, I made sure that cmake actually SEES them all and recognizes them (I exported the appropriate variables) I'm running 32-bit version of Ubuntu 10.04

Are there any other dependencies I should worry about?

2013-03-30 02:37:08 -0600 received badge  Supporter (source)