Marc Eder

Results 27 comments of Marc Eder

I had the same issue. The easiest solution I found if you're just trying to view the output is to just switch to write to an OBJ file. Change [this...

CodeFactor doesn't seem to like my usage of `dynamic_cast` to disambiguate the `Regions` object in [`ComputeFeaturesOnTangentImages`](https://github.com/openMVG/openMVG/blob/84f0026a89b83874fc5bdb3ea524002e5ae94901/src/openMVG/spherical/tangent_images.cpp#L409). Any alternative solutions come to mind?

I exposes a few additional functions (mainly coordinate conversion operations) and fixed a bug with the coordinate conversions used for image description. I also added a bunch of unit tests...

Hi @pmoulon, Thanks for the reply! That was kind of the solution I came to as well. So `Regions` does actually assume that a region can be represented by a...

Also, as a micro-optimization, instead of performing 2 transpose operations, you could always just left-multiply by the transform and then you need no transpose operations. The network just ends up...

Ah, okay. So processing an equirectangular projection would require a resampling of the image? Equirectangular images are usually (180, 360) resolution--essentially unwrapping the sphere around the vertical axis. So I...

Okay, thanks for the explanation! I'll explore a bit.