I've a question about the CORRESPONDENCE_SIMPLE algorithm. As you had
told me, this is a classic correspondence algorithm, similar to
Moravec's (1996) work but without interest operator. The problem is
that I can't figure out the details of matching algorithm. As you had
said, you use vertically oriented edges for feature extraction, but
Moravec uses a correlation method to match the image patches. How do
you select the features? Do you search horizontally for corresponding
features? Do you take care of ambiguities like multiple matches?
I appreciate if you introduce me a source to read about how
"vertically oriented edges" can be extracted. And if it was possible,
write a little bit about sentienceTrackingFeature.
Cheers,
p.s. I will also be gratefully if you add me to the project.
On Apr 14, 4:48 am, "Bob Mottram" <fuzz...@gmail.com> wrote:
> The simple stereo works as follows:
>
> 1. Determine vertical edge intensities by comparing a few pixels to the
> left and right along each row.
>
> 2. Perform non maximal suppression along each row to give the 5 strongest
> edges.
>
> 3. Perform (1) and (2) on the left and right camera images.
>
> 4. For each row compare the edge features in the left and right images. A
> small neighbourhood is compared, on two or three different scales. Store
> the comparison results.
>
> 5. Sort the results from (4) to give typically the 100 best scoring
> matches.
>
> This method works reasonably well for low numbers of features. If you
> increase the number of features selected in (5) the results get worse
> because lower quality matches are included.
>
> sentienceTrackingFeature isn't presently used, but is intended to track
> stereo features from one frame to the next.
>
Would you please explain the algorithm that generates the blobs? I
can't figure out how it works.
I have also find a thesis that you might be interested in it.
http://www.cvl.isy.liu.se/ScOut/Theses/PaperInfo/forssen04.html
Cheers
On Apr 14, 4:48 am, "Bob Mottram" <fuzz...@gmail.com> wrote:
> The simple stereo works as follows:
>
> 1. Determine vertical edge intensities by comparing a few pixels to the
> left and right along each row.
>
> 2. Perform non maximal suppression along each row to give the 5 strongest
> edges.
>
> 3. Perform (1) and (2) on the left and right camera images.
>
> 4. For each row compare the edge features in the left and right images. A
> small neighbourhood is compared, on two or three different scales. Store
> the comparison results.
>
> 5. Sort the results from (4) to give typically the 100 best scoring
> matches.
>
> This method works reasonably well for low numbers of features. If you
> increase the number of features selected in (5) the results get worse
> because lower quality matches are included.
>
> sentienceTrackingFeature isn't presently used, but is intended to track
> stereo features from one frame to the next.
>