Machine vision in Python

前端 未结 7 1680
逝去的感伤
逝去的感伤 2020-12-28 16:45

I would like to perform a few basic machine vision tasks using Python and I\'d like to know where I could find tutorials to help me get started.

As far as I know, th

7条回答
  •  情书的邮戳
    2020-12-28 17:31

    You probably would be well served by SciPy. Here is the introductory tutorial for SciPy. It has a lot of similarities to Matlab. Especially the included matplotlib package, which is explicitly made to emulate the Matlab plotting functions. I don't believe SciPy has equivalents for the functions you mentioned. There are some things which are similar. For example, threshold is a very simple version of graythresh. It doesn't implement "Otsu's" method, it just does a simple threshold, but that might be close enough.

    I'm sorry that I don't know of any tutorials which are closer to the task you described. But if you are accustomed to Matlab, and you want to do this in Python, SciPy is a good starting point.

提交回复
热议问题