vakokako
vakokako
##### System information (version) - OpenCV => 4.5.5 - Operating System / Platform => Ubuntu 64bit - Compiler => clang 14.0.6 ##### Detailed description Current documentation on `cv::filter2D` says that...
I'm using a shortcut `Ctrl+Shift+V` to display main window. The problem is, when I press `enter` on one of the items, the "hide" animation of main window is laggy, however...
When moving crosshair cursor, there is a slight delay compared to standard mouse. I've seen that custom cursor was done with quick items and sending mouse position via signals/slots. I'm...
Often times to extend the behaviour of `boost::histogram`, we need unsafe access to storage. And there is one performance issue with working with storage_adaptor. My use case can be simplified...
This pr adds type trait `xt::detail::has_fixed_size` to replace a common usage of `xt::detail::is_array` where implementation can benefit if the size of the container (usually used for shape) is known at...
This merge request fixes some issues with iterators. - [x] `xfunctor_view::crbegin` was returning non const iterator - [x] `xiterator_adaptor::data` was returning iterator, not a pointer - [x] `xt::reshape_view().rbegin()` didn't compile...
In c++20 `std::allocator::reference` was removed, but the `xt::tracking_allocator` uses it with `using reference = typename A::reference;` which results in error: ```cpp .../xtensor/xutils.hpp:731:39: error: no type named 'reference' in 'std::allocator' using...
When using adapt with strides, the assignment operator doesn't work correctly. ```cpp #include #include #include #include #include int main() { xt::xtensor tensor_input = xt::arange(25).reshape({5, 5}); xt::xtensor tensor_output = xt::arange(9).reshape({3, 3});...
When using `xt::sort` without passing the axis along which to sort, I was expecting it to sort the values in recpect to the whole container, however, it sorted the values...