scott-vsi
scott-vsi
I am clustering unlabeled feature vectors, but I know that certain feature vectors cannot belong to the same cluster. I tried computing my own distance matrix and setting the distance...
Ok. Thanks! I'll give it a try
Sorry about this. I pushed a fix for it (c68b635). It seems to be an issue with the necessary pybind11 overload not being loaded. So I manually loaded it. I...
I think we need to do this in the face3d [module](https://github.com/visionsystemsinc/face3d/blob/8b7bc76ca082030f03d5e33665ffc980499f0190/python/pyface3d/pyface3d.cxx#L805) ```C++ py::module importlib_util = py::module::import("importlib.util"); if (!importlib_util.attr("find_spec")("vxl.vgl.algo").is_none()) { py::module::import("vxl.vgl"); } ```
3.5 worked for me. And inspecting the dylib's in the Contents/Frameworks directory with `otool -L`, none of the libraries use `@rpath`, nor is there an LC_RPATH set in any of...
I guess the reference count of `r` does not go to 0 until after the new OffscreenRenderer is constructed. So if only one OffscreenRenderer can be constructed at at time,...
Yes. This is a great suggestion.
I had missed this, but the need to destruct `r` is mentioned in the documentation at the end of this section: https://pyrender.readthedocs.io/en/latest/examples/offscreen.html#running-the-renderer
FYI using project, translate, scale from this [comment](https://github.com/opencv/opencv/issues/9096#issuecomment-526695819) and INTER_NEAREST (because INTER_NEAREST_EXACT isn't recognized by warpAffine it seems), cv.warpAffine matches skimage for these tests: ``` M = project( translate([-0.5, -0.5])...
Yes. I am using integer images. Since this thread is about making sure NN interpolation works correctly, I was simply commenting on a difference in behavior in an area that...