Fabien Spindler

Results 27 issues of Fabien Spindler

ViSP is already interfaced with `libjpeg` and with `OpenCV` to read jpeg images. There is now [libjpeg-turbo](https://github.com/libjpeg-turbo/libjpeg-turbo) under BSD license that should be used when detected during CMake configuration.

enhancement

There is [CromaTag](https://arxiv.org/pdf/1708.02982.pdf) available in [github](https://github.com/CogChameleon/ChromaTag) and that has an MIT license compatible with ViSP that could be introduced as a 3rd party like AprilTag. From a quick look in...

enhancement

In `vpPlot` units are displayed in scientific notation. Add a way to chose between scientific (ie 1e-3) and normal (0.001). Any other improvement is welcome.

enhancement

We should find a way to optimize `vpImageFilter::gaussianBlur()`. The first thing to do is to compare the time of this function wrt OpenCV equivalent. Some ideas: - using c++11 std::thread...

enhancement

In `vpMbGenericTracker` there is the function `setMask(const vpImage &mask)` that is useful to exclude a part from the image from tracking. This image could be updated at each iteration of...

enhancement

We should introduce a new tutorial in `doc/tutorial/tracking/tutorial-tracking-mb-generic-use-case.doc` with title `Tutorial: Markerless generic model-based tracking use case` or something similar. The objective of this tutorial would be to show how...

enhancement

I suspect a typo in [Mail.php line 79](https://github.com/Kitware/CDash/blob/master/app/cdash/include/Messaging/Notification/Email/Mail.php#L79) ``` if (config('mail.driver') != 'stmp') { ``` that should be rather ``` if (config('mail.driver') != 'smtp') { ```

System information: - OS name: macOS - OS release: 12.6 - OS version: 21G115 - CPU name: Intel(R) Core(TM) i7-8850H CPU @ 2.60GHz - Xcode version: 14.0.1 To reproduce the...