Igal Alkon
Igal Alkon
> Right now nodes use the external IP addresses of incoming peers to determine duplicate connections. I need to find a better method of detecting this. Maybe adding some machine...
Hey, I'm also gonna try work on this issue a little. @saniales have you managed to commit some stuff perhaps? I would like to add a docker file with CentOS...
As I have noticed, this could have happen because memory allocation issue, the program just quite in silence unfortunately. Check if the memory usage reach the system limit. Also that...
So I tried to build using system dependencies, did the following (after inspecting `cmakeFindModules/*.cmake` files): ``` FLANN_ROOT=/usr/include/flann LEMON_ROOT=/usr/include/lemon COINUTILS_ROOT=/usr/include/coin CLP_ROOT=/usr/include/coin OSI_ROOT=/usr/include/coin ``` And this are the extra Fedora packages I...
Here is updated spec, using system libraries tested on Fedora 33: ``` Name: openmvg Version: 2.0_rc0 Release: 1 Summary: OpenMVG provides an end-to-end 3D reconstruction from images framework compounded of...
@pmoulon will check this today!
@pmoulon Yeah the following spec is still working with the release adjustments... Want me to open PR for it? ``` Name: openmvg Version: 2.0 Release: 1 Summary: OpenMVG provides an...
@pmoulon I've created a repository I called '[3D Reconstruction Toolkit (for Fedora Linux)](https://github.com/alkavan/3d-reconstruction-toolkit-fedora)' that contains `.spec` files for both OpenMVG and OpenMVS, as well as scripts for installing manually. You're...
I've tried to build with OpenCV 3.4.18 and 4.6.0 that I compiled externally, and with OpenCV 4.5.5 that I have on my system, in all cases I still get that...
Adding `add_compile_options(-fpermissive)` to the main `CMakeLists.txt` file of the project did do the job! ``` ./openMVS-2.0.1/apps/TextureMesh/../../libs/MVS/../Common/Types.inl:3062:72: warning: passing ‘const SEACAVE::TImage’ as ‘this’ argument discards qualifiers [-fpermissive] 3062 | fImage.write(cv::Mat::template ptr(--i),...