Carl Dehlin

Results 110 comments of Carl Dehlin

I'll work out a scheme as I go and document it with a PR later. I'll probably add some information on how to make a bug report as well.

Thanks @asmorkalov for your suggested workaround. Please note that USAC is not documented as a supported method for findHomography. Just to clarify, this is not a convergence issue, but a...

Inspecting logs from my prod jobs it turns out that this happens way more often than I expected! The bug has gone under the radar for a long time because...

@kaingwade Good catch! However, having the same point occurring several times is not an issue, the whole point of `findHomography` is to solve the correspondence problem! But I can see...

@mortie To understand the need for this feature, may I ask what distros/compilers don't use default locations when searching headers? Need a reproducible failure case to work with here. Doctest...

> macOS doesn't use /usr/include to search for headers Which compiler are you using? I don't think this has anything to do with macOS per se. Again, some form of...

> I use Apple Clang. I'm not sure if it's bundled with macOS or if it comes from XCode Command Line Tools, but it's the official compiler on macOS. This...

It does not pollute global namespace, it expands into the `doctest` namespace. The macro call `TYPE_TO_STRING(MyClass)` expands into ```cpp namespace doctest { template inline String toString() { return "MyClass"; }...

This is not possible to do. `TEST_SUITE` defines an "opaque namespace" (that is, a generated, non user visible namespace). The following code ```cpp TEST_SUITE("RandomIterator") { struct random_iterator {}; TYPE_TO_STRING(random_iterator); }...

Can you write an example? It sounds like you have a custom exception class with some attached data that you want to verify.