Ask Your Question
0

About my image processing project...

asked 2013-09-01 05:40:19 -0600

dogucan159 gravatar image

updated 2013-09-02 03:48:47 -0600

I have a project about computer vision. My project is that converting 2D floor plan to 3D. To do this, I should detect rooms of the plan then I should detect objects in the room ( for example: dining table, sink, armchair ). What can i learn to do this job? Which topics related to it? How can i make preparation?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
3

answered 2013-09-02 03:55:45 -0600

Ok some suggestions on where you should start:

  1. Make sure you master C++ programming. If not, start at the very beginning by looking at the official C++ tutorial and starting guide.
  2. Make sure you understand the basics of OpenCV, like how images are stored, how to process pixels, how to create a project, ... For that I suggest going to the tutorial page and start by going through the first 2 - 3 sections.

By now you are ready to move to something more difficult and to tackle the challenge of your project. Start by writing out step for step on what you want to accomplish. I can give you some suggestions on where to look:

  • For plan extraction in 2D you will need to look for lines in images. Try edge detection techniques combined with for example the HOUGH line detector. It can get you pretty neat results.
  • You will have to look for objects. If they have always the same look, you should try the bag of words approach of 2D feature matching. If you have variance in the appearance, try moving to for example cascade classification.

Basically, pushing a project forward is trial and error. Make the best of it! And feel free to ask for problem solutions.

edit flag offensive delete link more

Question Tools

Stats

Asked: 2013-09-01 05:40:19 -0600

Seen: 841 times

Last updated: Sep 02 '13