Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to scan single image from selected device on Mac OS , iam using Morena7 as Morena6 is not supported for 64 bit Mac

Here is my sample code,

private void simpleScan() throws Exception {
// Selecting a device (1st device available is selected)

Manger manager;
List<? extends Device> devices = manager.listDevices();
if (devices.size() > 0) 
{
Device device = devices.get(0);

if (device != null) {
boolean showUI = false;

// for scanner device set the scanning parameters

if (device instanceof Scanner) 
{
Scanner scanner = (Scanner) device;
scanner.setMode(Scanner.RGB_8);
scanner.setResolution(75);
// scanner.setFrame(100, 100, 500, 500);
} else
// for camera device show native UI
if (device instanceof Camera) {
showUI = true;
}

// start scan using default (0) functional unit

BufferedImage bimage = SynchronousHelper.scanImage(device, showUI);
System.out.println("scanned image info: size=(" + bimage.getWidth() + ", " +     
bimage.getHeight() + ")   bit mode=" + bimage.getColorModel().getPixelSize());
// do image processing if necessary
// ...
}
} 
else
System.out.println("No device connected!!!");
}

in the above code manager.listDevices() cannot identifying the devices connected,as a result it is throwing no device connected always,can anyone have an idea on Morena 7 and how it will work? or can i have other framework which will work for 64 bit mac?

i am using Microsoft® LifeCam Cinema(TM) as my input device.

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.