marvinj
marvinj copied to clipboard
Javascript Image Processing Framework based on Marvin Framework
I would like to use MarvinJ in my Angular application. But the installation documentation from http://marvinj.org/en/tutorials/getting_started_ionic.html doesnt work, or is not 100% understandable. 1. I downloaded the marvinj-1.0.js raw file...
I have a picture with a logo. And I want to get logo from picture. What shuold I do
Is there any reason in particular we're overwriting the input image's alpha? I feel like keeping it the same would be the expected behavior.
Hi! I'm wondering if it is possible to detect outer background of an image using MARVINJ and then make it transparent? Please take a look on screenshot https://i.imgur.com/qmZ21Ug.png (desired area...
On a simple 1080x800px image, with kernel of size 10, it takes well over 15s. Not sure if there's more efficient ways to implement it, is it the same method...
Implemented [getIntColorArray](http://marvinproject.sourceforge.net/javadoc/marvin/image/MarvinImage.html#getIntColorArray()) from MarvinImage on the javascript library. This is useful for quickly getting all 4 components with one line: `const [r, g, b, a] = img.getIntColorArray(x, y);`
I noticed MarvinSegment on marvinj-1.0 has the following code: ```javascript function MarvinSegment(x1, y1, x2, y2) { this.x1 = x1; this.x2 = x2; this.y1 = y1; this.y2 = y2; ... ```...