Question

Je veux capturer l'image en noir et blanc en utilisant J2ME je suis ok avec l'image couleur, mais la capture veut capturer l'échelle en noir et blanc et gris iamge

Où puis-je définir cette propriété en toile de caméra ??

Était-ce utile?

La solution 2

en utilisant le code suivant, vous pouvez convertir l'image en niveaux de gris

import java.io.IOException;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Image;
import javax.microedition.midlet.MIDlet;

public class Grey extends MIDlet {
    private Form frm;

public void startApp() {
    if (frm == null) {
        frm = new Form("Grey");
        try {
            Image img = makeGreyScale(Image.createImage("/test.png"));
            frm.append(img);
        } catch (IOException e) {
            frm.append(e.toString());
        }
        Display.getDisplay(this).setCurrent(frm);
    }
}

public void pauseApp() {
    // do nothing
}

public void destroyApp(boolean b) {
    // do nothing
}

// here is where the action is...
private static Image makeGreyScale(Image img) {
    // work out how many pixels, and create array
    int width = img.getWidth();
    int height = img.getHeight();
    int[] pixels = new int[width * height];
    // get the pixel data
    img.getRGB(pixels, 0, width, 0, 0, width, height);
    // convert to grey scale
    for (int i = 0; i < pixels.length; i++) {
        // get one pixel
        int argb = pixels[i];
        // separate colour components
        int alpha = (argb >> 24) & 0xff;
        int red   = (argb >> 16) & 0xff;
        int green = (argb >>  8) & 0xff;
        int blue  =  argb        & 0xff;
        // construct grey value
        int grey = (((red * 30) / 100) + ((green * 59) / 100) + ((blue * 11) / 100)) & 0xff;
        // reconstruct pixel with grey value - keep original alpha
        argb = (alpha << 24) | (grey << 16) | (grey << 8) | grey;
        // put back in the pixel array
        pixels[i] = argb;
    }
    // create and return a new Image
    return Image.createRGBImage(pixels, width, height, true);
}

}

Autres conseils

Très probablement, vous aurez besoin de jouer avec l'image coder les paramètres du gestionnaire http://java.sun.com /javame/reference/apis/jsr135/javax/microedition/media/Manager.html#media_encodings

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top