Liviu Nicoara

Results 6 issues of Liviu Nicoara

After reading the Calderara paper linked in the Temporal Median implementation (see section 2.2) I believe that the implementation is not faithful to the description of the algorithm. In particular...

question

This existed previously as #583 and stayed here for a number of years. If there is still interest in it, here it is, in one commit. I left the management...

In OCLBP.cpp:94 there is a rogue write. For a 3x3 combination, iNeight is an 1x8 vector. The value past the end is used to index the write into filtData.

bug

In OCLBP.cpp:115, the computed filter center index is 5, for a 3x3 filter, instead of 4. Probably a typo from the translation of the Matlab code (Matlab indexes start at...

bug

Unlike `std::make_unique` which does not allow the passing of a custom deleter, this factory does. A deleter whose construction can throw would leak like in the following contrived test case:...

`unique_resource` proposal fills a sore gap in the C++ automatic resource management. I am using an incarnation of it in my projects and recently I noticed the following usability issue...