Is there any way to integrate OpenCV with PHP?

后端 未结 4 1582
情歌与酒
情歌与酒 2020-12-16 13:27

I am trying to develop an application with PHP.

There are two possible ways this application will be developed. The first one is to try to do something like www.picn

相关标签:
4条回答
  • 2020-12-16 13:48

    Doing a google search for 'php opencv' suggests - yes you can :)

    This one looks decent. http://www.xarg.org/project/php-facedetect/ (I know it's specific to face detaction, but could be a good start-point for you).

    Will only be doable if you're using your own server as needs lots of additional core stuff added.

    0 讨论(0)
  • 2020-12-16 13:50

    Depends on both server restrictions and the target program. If server allows, you can run external programs and pass arguments to them.

    These external programs are usually CLI programs, i.e., without GUI. Image would be passed as a path to an image file (rather than data about pixels), i.e., my_opencv_program -resize 1024x768 -infile /tmp/input.jpg -outfile /tmp/output.jpg.

    0 讨论(0)
  • 2020-12-16 13:51

    there is another PHP face detection class here:

    Apparently it doesn't work 100% on every photo, probably to do with the angle of the face etc, but I've heard good reports on it. I'm thinking about using it on my next project.

    0 讨论(0)
  • 2020-12-16 13:56

    OpenCV for PHP is a new pecl module. Needs a little work to be complete, but a lot of work is already done.

    0 讨论(0)
提交回复
热议问题