On Monday, 11 March 2019 at 10:18:39 UTC, Dennis wrote:
On Monday, 11 March 2019 at 09:29:16 UTC, Ferhat Kurtulmuş
wrote:
I am trying to learn dlang and decided to develop a
regionprops library in pure d
(https://github.com/aferust/regionpropsford).
What is regionprops? What are the use cases for this library?
Region Properties, AKA regionprops is a famous routine for
calculating region (blob) properties/statistics in image
processing/computer vision. It firstly appeared in image
processing toolbox of Matlab, then some image processing
libraries such as scikit-image (Python) and GNU/Octave made its
own implementations using the same name. The process starts with
labeling discrete binary regions for 8-connected objects, and
calculates properties of these regions like area, centroid,
perimeter, bounding box etc.