Image edge detection

后端 未结 6 1277
春和景丽
春和景丽 2020-12-17 01:02

I need to count out boxes in a warehouse by using edge detection techniques; images will be taken from a 3D model of a warehouse and the propose system will be used 3 images

6条回答
  •  盖世英雄少女心
    2020-12-17 01:26

    For a quick start I would suggest looking at those two:

    • Sobel operator
    • Canny operator

    These are the most widely used edge detection filters with pretty good results.

    If you are starting to learn computer vision, you should also learn about typical operations in image processing and convolution.

    The OpenCV library is a great library which implements many algorithms of computer vision, including the two operators mentioned above.

提交回复
热议问题