Hi,
Someone can point me to a D implementation of the classical OpenCV find homography matrix?
Thank you,
Paolo
Thread overview | |||||||
---|---|---|---|---|---|---|---|
|
April 21 Find homography in D? | ||||
---|---|---|---|---|
| ||||
Hi, Someone can point me to a D implementation of the classical OpenCV find homography matrix? Thank you, |
April 21 Re: Find homography in D? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Paolo Invernizzi | On Sunday, 21 April 2024 at 14:57:33 UTC, Paolo Invernizzi wrote: >Hi, Someone can point me to a D implementation of the classical OpenCV find homography matrix? Thank you, Kinda some work but it should be doable using DCV and mir.lubeck in theory DCV can compute, not sift or surf b, but similar features https://github.com/libmir/dcv/blob/master/examples/features/source/app.d Lubeck computes singular value decomposition And this method but with mir ndslices |
April 30 Re: Find homography in D? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Paolo Invernizzi | On Sunday, 21 April 2024 at 14:57:33 UTC, Paolo Invernizzi wrote: >Hi, Someone can point me to a D implementation of the classical OpenCV find homography matrix? Thank you, Just for future records in the forum. // https://math.stackexchange.com/questions/3509039/calculate-homography-with-and-without-svd /+dub.sdl:
|
April 30 Re: Find homography in D? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Paolo Invernizzi | On Sunday, 21 April 2024 at 14:57:33 UTC, Paolo Invernizzi wrote: >Hi, Someone can point me to a D implementation of the classical OpenCV find homography matrix? Thank you, Something I wrote awhile ago...
|
May 13 Re: Find homography in D? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Paolo Invernizzi | On Sunday, 21 April 2024 at 14:57:33 UTC, Paolo Invernizzi wrote: >Hi, Someone can point me to a D implementation of the classical OpenCV find homography matrix? Thank you, Now, we can do image stitching using DCV. It needs improvements though. https://github.com/libmir/dcv/tree/master/examples/imagestitchinghomography |