Samuel Debionne

Results 22 issues of Samuel Debionne

I'm considering a PR to add an option (or change the behavior) of resources with associations. I don't think it is correct to return a resource and its associations when...

feature request

When running a graph outside the main thread, it's very tempting to create the graph/nodes in the main thread and then move them to the execution thread. Unfortunately that does...

enhancement

I have the following use case that converts a non-copyable Struct to tuple: ```cpp #include #include struct person { person (person const&) = delete; std::string name; unsigned short age; };...

This PR adds an overload of `operator()` of `member_ptr` to support member function so that the following use case is now supported: ```c++ namespace ns { struct Person { std::string...

For generic `exception` events, it would be useful to inject the event/exception in the subsequent action. AFAIU, it works for typed exception event such as `exception` only. Here is a...

### Description Contribute to remove dependencies to older c++03 boost libraries. ### References [C++11 Modernization ](https://github.com/boostorg/gil/projects/3) ### Tasklist - [ ] Add test case(s) - [x] Ensure all CI builds...

cat/enhancement
core

### Is your feature request related to a problem? Please describe. I was surprised to see that arithmetic operations on `pixel` compiles but without explicit support from the library. `pixel`s...

### Description Add benchmarks for geometry transformations with additional benchmarks for reference libraries such as OpenCV, IPP or Blaze for the transpose transformation. ### References Preliminary results were discussed on...

core
cat/performance

### Minimal Working Example (in C++) Here is a micro-benchmark written with [Google Benchmark](https://github.com/google/benchmark) that compares the performance of a simple plus operation on every pixels of an grayscale image:...

cat/performance