I have created an activity captures an image through Camera and now I have the image in Bitmap
format which I want to pass to this plugin class from here:
The function looks like this:
public void process(MarvinImage imageIn, MarvinImage imageOut, MarvinAttributes attrOut, MarvinImageMask mask, boolean preview) {
Now how do I pass these arguments?
It first asks for MarvinImage
so how can I convert my Bitmap
to MarvinImage? And what are rest of the arguments?
Please help.