2010年1月19日火曜日

Stability of Line detections (Week2)

Is it holiday today? I don't get used to American national holiday system...

I showed the line detection component with Hough Transforms last time. It could detect lines corresponding to edges of shelves. But I found it's sometimes unstable.

These are examples of detected lines. You can see the length and the location of the red line is changing (jumping), and so the location of the green circle - "middle point" does. It's certainly owing to noises on captured images.

It might be a problem to use the location of "middle point". I tried to adjust parameters of Hough transform and Gaussian filter for more stable detection, but it still remains unsolved.

I had a discussion about this problem with the advisior Serge Belongie. He was still positive with this result. He told me it was not so bad with such a simple technology, and advised me to move on developing object tracking component.

Detection of Lines from Captured Image (Week 1)

By the end of week 1, I built a Hough Transform component to detect lines from captured image by web camera (Microsoft-VX 6000).

It could detect lines corresponding to edges of shelves, under certain conditions. Now I don't have any data-sets available, such as still images and movies at a grocery store. So I tested it by using a desk in my laboratory.

This is an example of captured image with two boxes of RITZ.


And here is the result of Hough Transform. This software detects lines whose slopes are under 30 degrees to the horizontal line, so that it could detect those corresponding to edges of shelves.

The red line and the blue line are corresponding to edges of the desk. And a green circle is a "middle point" of these lines. In this case, the circle represents the location of edges well.

2010年1月15日金曜日

Hough Transform

Hough Transform is a conventional way to detect lines from images. Let me show you an example. Here is a crazy collection of "TIDE" (from rakuten.co.jp).


And the result of Hough Transform on this image is below.


White lines are showing edge lines of the image, and red lines are detected by Hough Transform. Red lines correspond to edges of shelves well.
It might be useful to detect edges of shelves and get information on the location of visually-impaired against shelves.

Interface of RSG @ GroZi

I designed and implemented Remote Sighted Guide Interface last summer (Please see the picture below).
The GroZi is a solution for visually impaired to enjoy an individual shopping for groceries without the aid of another person. And the RSG interface is software for guides who support visually-impaired shopping from a remote area.

However, there are no functions such as object recognition and object tracking in current RSG interface. In this CSE-190a course, I am going to study the effectiveness of object tracking for helping RSG.