3d0c / imagio

Image Processing Web Service.
MIT License
90 stars 12 forks source link

Uncouple imgproc #2

Closed lazywei closed 10 years ago

lazywei commented 10 years ago

Hi,

Would you consider uncouple imgproc with other packages in imagio? So that others can use it to process image without import other irrelevant packages in this project.

3d0c commented 10 years ago

There is nothing to uncouple. "imgproc" is a very simple stuff, just few C functions. You can use it separately if You want, see the "do.go", how to interconnect with it. If You need more complex solution - there is a bindings for opencv (https://code.google.com/p/go-opencv/) (it looks abandoned, but You could try) Anyway, it's pretty straightforward to use opencv (or any other library) from go.

lazywei commented 10 years ago

I saw https://code.google.com/p/go-opencv/ a few days ago, and I'm considering create a fork of it on github so others can help to maintain it. Are you interested in such project :) ?

By uncouple, I mean "imgproc" depends on "query" and "utils".

3d0c commented 10 years ago

Sure. I'll try to help.

lazywei commented 10 years ago

Thanks for your reply! I will try to use imgproc standalone.

(Besides, in case anyone is interested, I just clone go-opencv on https://github.com/lazywei/go-opencv.)