Ask Your Question

TimeManx's profile - activity

2018-06-13 02:12:38 -0600 received badge  Popular Question (source)
2018-05-14 09:57:15 -0600 received badge  Popular Question (source)
2014-01-10 06:21:05 -0600 commented question Find new object in a scene

@JAyThaRevo The camera does move. The images could be taken at a farther or nearer distance like the images that I've posted.

2014-01-09 19:54:12 -0600 asked a question Find new object in a scene

I'm trying to find if a new object has been added to a scene. The initial scene would most likely be lacking any kind of objects but might contain some patterns. The image for the scene containing the new object could also be taken from farther distance.

Would feature detection be a good option to achieve this? Or maybe something else? I'm basically looking for pointers to what I should start reading about.

This is how the two scenes might be Initial scenne Scene with object

2013-09-23 16:50:11 -0600 commented answer Video Stabilization for moving camera

You're post looks all mumbo-jumbo to me (only because I'm a computer vision noob, you've explained it very nicely). I don't even know what Hough voting is. What I'm doing right now is matching the FAST features of the two frames using the FLANNBASED descriptor matcher and discarding feature movements which are below a certain threshold. But I don't get very good results with this. Are there any improvements/flaws that you see here? Or should I dig deeper into your post?

2013-09-23 05:02:54 -0600 asked a question Video Stabilization for moving camera

I need to stabilize the shakes that a moving camera gets, for example, when a person is walking with the camera in his hand.

Till now, I've been able to detect the features of both frames using the FAST feature detector and calculate the displacement of the points.

What should I do next? Other posts suggest calculating the homography matrix and then using it to warp the new frame but will that not distort the linear motion of the camera as well? I just need to remove the shakes.

2013-09-13 16:45:02 -0600 commented answer JavaCameraView terrible on OpenCV above 2.4.3

@Marde Yes. I'm using 2.4.6 and it's still slow and blurry. Any way to fix this? I've had to write a lot of extra code just to get the Mat of the current frame.

2013-09-12 11:10:05 -0600 commented answer make Mat from buffer byte

@AndreyPavlenko Is there a way to create a Mat backed by a NIO ByteBuffer allocated by us. Alternatively, is there a way to get the Buffer of a Mat ?

2013-09-12 06:41:52 -0600 commented question Java binding and nio buffer

@Quattro Were you able to find a way?

2013-09-10 06:10:41 -0600 received badge  Teacher (source)
2013-08-24 02:57:35 -0600 received badge  Necromancer (source)
2013-08-23 16:26:55 -0600 commented answer What would be the best detectors for these objects

Also I'm a little confused about SIFT/SURF/ORB. In another post, someone suggested that feature detection techniques are more useful when we need to detect some specific images against a large database and that they aren't really useful in these kinds of scenarios.

2013-08-23 16:13:00 -0600 commented answer What would be the best detectors for these objects

You mean background subtraction followed by blob detection?

2013-08-23 01:46:57 -0600 answered a question OpenCV JavaCameraView is not full screen

You're probably not running it in fullscreen Add this to your onCreate

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
2013-08-22 15:57:42 -0600 commented answer What would be the best detectors for these objects

I've implemented the latentSVM detector in my android application acoording to how it was done in the latentsvm_multidetect.cpp sample but I just get a black screen with the log saying "Preview frame received. Frame size:152064" Any ideas?

2013-08-22 14:40:05 -0600 received badge  Supporter (source)
2013-08-22 03:59:38 -0600 commented question What would be the best detectors for these objects

Don't bother. Found it here.

2013-08-22 03:54:53 -0600 commented question What would be the best detectors for these objects

@GilLevi I read in a post that for latentSVM detector, openCV provides classifiers for people, cars, etc. But I could only find a classifier for cats in the OpenCV folders.

2013-08-22 03:09:22 -0600 received badge  Student (source)
2013-08-22 00:42:53 -0600 commented answer Is there any mature open source human detection and tracking system/algorithm?

Where can I find the classifiers for people, cars, etc. I could only find for cats in the OpenCV folders.

2013-08-21 14:02:47 -0600 asked a question What would be the best detectors for these objects

I started out with detecting people using the samples. HOG has good accuracy but a very slow for use on an android phone. Haar cascade was faster than HOG but accuracy was quite low. Also, I remember reading that Haar isn't suitable for human detection. For vehicle detection, Haar is working fine.

So could you guys suggest what would be best for detection of these objects

  • People
  • Vehicles
  • Trees
  • Buildings