graph-cut-ransac
graph-cut-ransac copied to clipboard
The Graph-Cut RANSAC algorithm proposed in paper: Daniel Barath and Jiri Matas; Graph-Cut RANSAC, Conference on Computer Vision and Pattern Recognition, 2018. It is available at http://openaccess.thec...
Hi @danini I was trying your PNP/Ransac implementation for python. I had a few questions.  It seems like opencv version ~50x faster. Is this expected because of the different...
Hello Barath, I'm facing build error issue. I'm using ubuntu 18.04, OpenCV 3.4.14, gcc 10.3.0, g++ 10.3.0, libeigen3-dev 3.3.4 Could you please help me?
Hello: I build and test project in UBUNTU1804,and build is OK.But when I try to run example "SampleProject",a exception raise,running info as below: ------------------------------------------------------------ 2D line fitting ------------------------------------------------------------ Processed scene...
my data generate code below: cv::Mat detected_edges(Size(640,480),CV_8UC1,Scalar(0)); cv::line(detected_edges, Point(detected_edges.cols / 4, detected_edges.rows / 4), Point(detected_edges.cols * 3 / 4, detected_edges.rows * 3 / 4), Scalar(255)); cv::Mat points(0, 2, CV_64F), point(1,...
I still have build problem in google colab. How to run compiler C++17 in google colab? CMakeFiles/SampleProject.dir/build.make:62: recipe for target 'CMakeFiles/SampleProject.dir/examples/cpp_example.cpp.o' failed make[2]: *** [CMakeFiles/SampleProject.dir/examples/cpp_example.cpp.o] Error 1 CMakeFiles/Makefile2:72: recipe for...
The `R` is defined as a getter function above, so one cannot assign values to R itself, and attempts to do so breaks clang compilation. Another functions already are setting...
``` ipdb> boxx.tree(corrs) └── /: (100, 5)float64 ipdb> corrs = np.concatenate((pts_2d, pts_3d), axis=1).astype(np.float32) ipdb> pose, mask = pygcransac.find6DPose( np.ascontiguousarray(corrs), min_iters = 50, max_iters = 1000, probabilities = [], # Inlier...
Hi @danini, This is not an issue, it is a question. I couldn't find a better tab to ask this. I am working on a problem of the form `A...
Hi, Currently the python wrapper, see e.g. here: https://github.com/danini/graph-cut-ransac/blob/37f7469d49dbedddeaa5a2c1427b70121375c0bd/src/pygcransac/src/gcransac_python.cpp#L721-L731 only supports integer image sizes. As far as I can tell, these are always cast to doubles, so it would make...
graph-cut-ransac/src/pygcransac/include/estimators/fundamental_estimator.h:100:49: error: ‘clamp’ is not a member of ‘std’ 100 | minimum_inlier_ratio_in_validity_check(std::clamp(minimum_inlier_ratio_in_validity_check_, 0.0, 1.0)), | ^~~~~ set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) gcc version 9.4 c++17