private void setMouseColor(String x, String y){
Icon icon = jLabelBild.getIcon();
}
byte bild[] = LadeBild.savebild;
int x_x=Integer.parseInt(x);
int y_y=Integer.parseInt(y);
int cam_breite=Cam.getBildBreite(0);
int cam_hoehe=Cam.getBildHoehe(0);
BufferedImage img = new BufferedImage(cam_breite, cam_hoehe, BufferedImage.TYPE_BYTE_GRAY);
img.getRaster().setDataElements(0, 0, cam_breite, cam_hoehe, bild);
trace(""+img.getRGB(x_x, y_y),0);