Implementing ridge detection

后端 未结 3 1713
说谎
说谎 2021-02-06 08:23

I\'m trying to write a ridge detection algorithm, and all of the sources I\'ve found seem to conflate edge detection with ridge detection. Right now, I\'ve implemented the Canny

3条回答
  •  孤独总比滥情好
    2021-02-06 09:03

    If anyone is still interested in this, here is an implementation of the ridges/valleys algorithm: C++ source code. Look for a function called get_ridges_or_valleys(). This implementation is a 3D version of the algorithm proposed by Linderhed (2009). See page 8 of the paper for the ridges/valleys algorithm.

提交回复
热议问题