go away spammer

Author Topic: Computer vision - pixel clustering/classification in depth map  (Read 3608 times)

0 Members and 1 Guest are viewing this topic.

Offline EXCodeXTopic starter

  • Jr. Member
  • **
  • Posts: 9
  • Helpful? 0
Hi all ! I need a little help!

Currently am working on robotics project where differential driving robot navigates autonomously using stereo vision technology. The robot uses two webcams to capture real time image data then the image data is transmitted to PC and processed using MAtlab computer vision toolbox. My 1st goal is to detect nearby obstacles using the depth map.
I could obtain depth map by comparing the stereo image pair but ended up with little bit noisy result.  I was able to reduce this noise with the help of Kalman filter.

now I have a depth map similar to following matrix. (numbers are just to get an idea)

          0.1   0.5  0.6  1.2  1.5  1.8  3.2  0.2 ..................... 0.6  0.4           |
          0.5   0.4  0.6  3.2  1.5  6.8  3.2  1.2 ..................... 0.6  0.4           | 480 rows
          0.3   0.1  0.6  1.2  1.5  1.8  3.2  0.2 ..................... 0.6  0.4
          0.1   0.4  0.6  2.6  1.5  5.8  3.2  3.2 ..................... 0.6  0.4
          0.3   0.2  0.6  1.2  1.5  1.8  3.2  0.2                       0.6  0.4
           .         
           .
           .
          0.2   0.6  0.6  1.2  1.5  1.8  3.2  0.1                       0.6  0.4


                          640 colmns

number represents the depth information of each pixel.(if the number is high -> high distance , low -> low distance)
Since i am using two 640x480 resolution video streams , I have 640 columns and 480 rows in depth map.

Now I need to use clustering or classification algorithm to cluster/ classify these depth data, so I can detect the area where the obstacle is. I tried to  Kmeans clustering algorithm in matlab, but still i dont have clear idea on how to apply it to my application.

what I need is a result like this ,

(Please check the attached image.)


The nearby objects are shown in read colour . I need to use clustering/ classification algorithm to do this segmentation. then the robot can decide in which direction to turn to avoid that obstacle.

Id there are experts in this field, please give me some idea to get through this .
Your suggestions are really appreciated . Thanks   :)


Offline rouncer

  • Jr. Member
  • **
  • Posts: 41
  • Helpful? 0
Re: Computer vision - pixel clustering/classification in depth map
« Reply #1 on: August 06, 2014, 05:13:08 PM »
I havent got to this stage yet, but im planning on attempting it myself.

Heres my theories up till now,  but my theories are all based apon perfect depth maps, like how a computer would generate them.

First thing id do, was try to "modulize" the spacial scene,  by using the discontinuities of the depth map to produce sillouettes around all the objects.

Thats the first step done.

Then Id try to match each module, with some kind of approximating primitive or rig.

And then your approximating primitives will go straight into your traversal program as 3d shape functions.


Offline SeekingVision

  • Jr. Member
  • **
  • Posts: 14
  • Helpful? 0
Re: Computer vision - pixel clustering/classification in depth map
« Reply #2 on: November 19, 2014, 12:43:39 PM »
I am also working on depth mapping but I'm attempting it with a single camera first based on relative size mapping. I think the best way to approach distance of object determinations is to track an outlined object. For myself the challenge is to create definitive edge lines that can be followed and "imagined" when they disappear for a short amount of time.
Robots are our children and will inherit the Earth.

 


Get Your Ad Here

data_list