Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielarchanjo/marvinj
Javascript Image Processing Framework based on Marvin Framework
https://github.com/gabrielarchanjo/marvinj
computer-vision image-processing javascript javascript-library
Last synced: about 2 months ago
JSON representation
Javascript Image Processing Framework based on Marvin Framework
- Host: GitHub
- URL: https://github.com/gabrielarchanjo/marvinj
- Owner: gabrielarchanjo
- License: lgpl-3.0
- Created: 2017-07-01T15:44:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-15T09:05:56.000Z (almost 5 years ago)
- Last Synced: 2024-08-05T15:04:26.972Z (5 months ago)
- Topics: computer-vision, image-processing, javascript, javascript-library
- Language: JavaScript
- Homepage: https://www.marvinj.org
- Size: 4.82 MB
- Stars: 321
- Watchers: 20
- Forks: 52
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-client-side - MarvinJ - Javascript Image Processing Framework based on Marvin Framework [Try it!](https://www.marvinj.org/en/examples/processingBeforeUpload.html) (Multimedia / Image)
README
# MarvinJ
MarvinJ was created to be the Javascript version of Marvin Image Processing Framework aiming to provide the same features in the web, server and mobile platforms powered by Javascript.If you are not familiar with Marvin Framework and want to play with MarvinJ, don't worry. The rest of this article shows the basic image processing features of MarvinJ using JSFiddle snippets that you can make your own version and play with it.
### Image Loading
In the case of MarvinJ we load images from URLs and usually use a HTML5 canvas for displaying processed images.```
var canvas = document.getElementById("canvas");
var image = new MarvinImage();image.load("https://i.imgur.com/4O8VFQY.jpg", function(){
image.draw(canvas);
});
```
Continue Reading:### "Playing with image processing in Javascript using MarvinJ 1.0 (JSFiddle Examples)"
http://marvinj.org/en/releases/marvinj_1.0.html