Using a HP flatbed scanner for IMAQ

We are developing an video measurement system using a HP flatbed scanner to
acquire the image and do various measurements.
We want to ensure that we have control over scan modes, contrast settings
etc. from within Labview.
Has anybody experience with the integration of flatbed scanners into Labview

Hi!
Few words can i tell. Probably that TWAIN is the answer.
Olympus have a trial version using activeX.
But you can find another one in this site:
http://www.imagemill-tech.com/LvDrivers_.htm
Nuno Amorim
[email protected]
"Adrian Hofmann" escreveu na mensagem
news:[email protected]..
>
> We are developing an video measurement system using a HP flatbed scanner
to
> acquire the image and do various measurements.
> We want to ensure that we have control over scan modes, contrast settings
> etc. from within Labview.
> Has anybody experience with the integration of flatbed scanners into
Labview
> ?

Similar Messages

  • Recommendation Request: Best flatbed scanner for use with Mac and iPhoto?

    I have a flatbed scanner that Mac doesn't recognize. It's 9 years old, does a great job, but only works with Windows. Period. Don't ask what model or anything, I've already done the research, it's hopeless. MOVING ON... I'm tired of BootCamping to Windows, running scans, and then rebooting and hunting down the files...
    So, what flatbed scanner do you use, rank it on scale of 1-10, and how much did it cost?
    This thread might be useful to many people... FLATBED scanners, only, please. Make another thread for sheetfed scanners if you like.

    This site has some good info on many scanners: Scanner Reviews | Flatbed Scanner |.
    I'd look for one with high optical resolution. It's akin to the zoom in digital cameras, optical vs digital. FWIW I use a Canon 8600F (now replace by the 8800F) which does slides, film strips as well a photos. What I like about it is that you can scan multiple photos and have each saved to it's own file. Other brands of scanners offer that as well I'm sure but it'sjust a feature to consider. My scanner also came with a bundled copy of Photoshop Elements for Mac. Not the latest version but worked very well. Its replacement also bundles PSE.

  • Flatbed scanner for windows 7

    Any recommendations for a flatbed scanner thats works with windows 7. I will mainly be using the scanner for documents.
    Thank You

    These models should all work with Windows 7. The only difference is your needs.
    Flatbed Scanners at Bestbuy.com
    People usually get all-in-one printers, however. Have you seen this?
    HP 6500A Plus All in One
    It has the scanner built in, and it's definitely Windows 7 compatible. Saves room on your desk!
    I am a Bestbuy employee who volunteers on these boards on my own time. I am not paid for posting here, and you should understand that my opinions are exactly that - opinions. I do not represent Bestbuy in any way.
    : Open Mailbox

  • Issue setting baud rate for IMAQ using Camera Link

    I have a PCIe-1433 camera link board, with a Basler camera. I found that I can set the gain and exposure times directly in the camera using the serial link and serial commands. This works very well. I'm doing this programmatically using the CLAllSerial.DLL.
    The serial commands take too long to send in my application due to the default baud rate of 9600, so I was able to send a command to the Basler camera to up its baud rate, then change the baud rate of the camera link serial com port to match it. The result is that I can talk very quickly to the camera. Sweet so far.
    However, with both the Basler camera and the camera link com port set to the higher baud rate, I can no longer acquire images using the IMAQ imgXXX commands. I get a timeout from the serial commands that IMAQ must be using to control the camera for image acquisition. Essentially the IMAQ driver doesn't know about the baud rate change. I cannot see how I can tell the IMAQ driver what baud rate to use either. NI MAX also becomes unusable in this situation.
    How can I, through the IMAQ driver, increase the baud rate of the serial commands to the camera over the camera link?
    Cheers,
    Wayne
    Solved!
    Go to Solution.

    David,
    I'll try to help if I can. Keep in mind that I'm using a stub into the DLL using Delphi as my development platform. That should not matter.
    The DLL I'm tapped into is the IMAQ.DLL for the camera calls to get/set exposure time, gain, etc. The best reference I found for this is the NI-IMAQ help files that get installed with the normal NI install. There are important string constants that you need, to talk to the interface. I can't recall how I found these, but below are mine, in Delphi:
    { These are Basler camera attribute names we care about. }
    BaslerCameraGainControlAttributeString = 'Gain'; { string result }
    BaslerCameraGainValueAttributeString = 'Gain Value'; { numeric result }
    BaslerCameraBitDepthAttributeString = 'Bit Depth'; { string result }
    BaslerCameraExposureControlAttributeString = 'Exposure Control'; { string result }
    BaslerCameraExposureModeAttributeString = 'Exposure Mode'; { string result }
    BaslerCameraExposureTimeAttributeString = 'Exposure Time'; { numeric result }
    BaslerCameraMaximumHeightAttributeString = 'Maximum Height'; { numeric result }
    BaslerCameraPowerOverCameraLinkAttributeString = 'Power Over CameraLink'; { string result }
    { These are Basler camera attribute values we care about. }
    BaslerCameraManualGainAttributeValue = 'Manual';
    BaslerCamera12BitDepthAttributeValue = '12-bits';
    BaslerCameraMaximumHeightAttributeValue = 2048;
    BaslerCameraExposureControlFreeRunAttributeValue = 'Free Run';
    BaslerCameraExposureControlTriggeredAttributeValue = 'Triggered';
    BaslerCameraExposureModeAttributeValue = 'Manual';
    BaslerCameraExposureTimeAttributeValue = 5;
    BaslerCameraPowerOverCameraLinkAttributeValue = 'On';
    BaslerCameraGainValueAttributeValueMinimum = 33;
    BaslerCameraGainValueAttributeValueMaximum = 512;
    MaxAttributeStringLength = 100;
    The following code snippets, get and set gain and exposure times (I called it shutter speed), in Delphi:
    function TNiVision.GetGain : double;
    var
      TheGain : double;
    begin
      if GetCameraAttributeNumeric( BaslerCameraGainValueAttributeString, TheGain ) then
        Result := TheGain
      else
        Result := BaslerCameraGainValueAttributeValueMinimum;
    end;
    procedure TNiVision.SetGain( TheGain : double );
    begin
      SetCameraAttributeNumeric( BaslerCameraGainValueAttributeString, TheGain );
    end;
    function TNiVision.GetShutterSpeed : double;
    var
      TheSpeed : double;
    begin
      if GetCameraAttributeNumeric( BaslerCameraExposureTimeAttributeString, TheSpeed ) then
        Result := TheSpeed
      else
        Result := 1;
    end;
    procedure TNiVision.SetShutterSpeed( TheSpeed : double );
    begin
      SetCameraAttributeNumeric( BaslerCameraExposureTimeAttributeString, TheSpeed );
    end;
    These then call into the DLL functions imgGetCameraAttributeNumeric and imgSetCameraAttributeNumeric. There is a formatting interface between the above and the actual DLL functions I didn't show that just reforms the Delphi strings attribute names into C null terminated char arrays.
    I hope this helps. I've now moved on to using Pylon with GigE cameras, which is a much cleaner interface, but very different code.
    Cheers,
    Wayne

  • I'm looking for a flatbed scanner than can scan documents that are 11" x 17"

    As the title states, I need to scan some documents that are 11" x 17". These documents are inked comic pages on vellum, which is sort of a thick, semi-translucent kind of paper. I think I'll need to lay these pages flat to scan them, instead of running them through a sheetfed scanner.
    Every Office Depot or Staples I visit has multi-function devices from HP and Epson that can scan this large. However, I've always had issues with devices from these companies, be it driver problems or hardware problems. I've also had a Mustek scanner in the past and it rapidly stopped working. I'm very happy with Canon products and would like to stay with this brand. Unfortunately, it doesn't appear Canon makes a flatbed scanner this large, and it's hard to tell if any of their multifunctions can do it.
    The question is: does Canon offer a product now, or have they offered one in the past, that can scan this large of a document? If not, who can I talk to about product ideas? My alternative would be scanning the pages one half at a time and then trying to join them in Photoshop, but who has that kind of time?
    Thanks for any help you can give.
    R. Ellis Novak
    www.photoncomics.com 

    Commercial Printing requires images to be 300 dpi (pixels per inch).
    You will have to do the maths as we don't know how big the images are, whether they fill each size or only part of them.
    If they bleed (go off the edge of the paper) they will need an extra 3/8" (.375") on each edge.
    So for an image to fill the largest size and bleed you need an image 7425 x 11025 pixels. I hope you have a good camera. You can aways reduce the dimensions down from that.
    Peter

  • Use of RF scanner for Optimization of Warehouse operations

    Dear All,
    I am going through the SAP forum, i saw few of you worked on some scenarios related to RF scanner.
    I am also working on a business requirement to optmise the Warehouse operation, like in existing business GR / TO confirmation/ GI/ JIT call creation happen everything in SAP standard transaction / as i am working with automotive OEM, we have a functionality called BORGR for IBD/ Shipment / TO/TO confirmation/ and GR.
    Our warehouse operation in HU manged.
    Could you pl help me on configuration or usages of RF scanner for the GR/ GI/ JIT call creation ( LM01)
    It will be great help if any document for support will get from your side.
    Appreciate your earnest response
    Thanks in advance
    Om

    Hi Om,
    Check below thread
    Handling unit configuration
    More info in the below link
    http://help.sap.com/bp_bblibrary/600/Documentation/G74_BB_ConfigGuide_EN_US.doc
    Hope this will help..
    Reg,
    Sudhir

  • Photoshop CS5 not recognizing EPSON 2450 flatbed scanner

    I am on a MacPro....OS X 10.6.8. I am running Adobe Photoshop CS5. I need to be able to run my EPSON 2450 flatbed scanner through Photoshop. But when I go to File > Import > it's not there. Please explain where I can find the TWAIN plug-in, where to laod it and how to make it so it shows up under, "Import" so I can operate the scanner through Photoshop.

    Scanning with TWAIN has become increasingly buggy.
    Why not just use the Epson scanner software that came with the scanner?
    That way you can continue to use Photoshop while using Epson to scan.
    There are more features available from Epson than with Image Capture.
    However, if you feel the need to use TWAIN, here is the link for Mac CS5 plugin.
    Five seconds with Google would get you this:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4904

  • OT: Scanner for production

    I have an Epson 3170 Photo scanner that has been serving me well and currently has a mechanical problem that I may not be able to resolve. The scanning mechanism will not return back from the end of its scan and it makes a horrid noise whenever I turn it on.
    Has anyone experience with this problem? Has anyone solved the issue?
    Has anyone any particular recommendations for a new scanner. The Mac magazines last reviewed flatbed scanners that were not printer-scanner-coffee maker-fax machines-chauffeurs-golf caddies back in 2008 and I am concerned about the tendency of scanner makers to not support Apple's OS upgrades (most particularly Snow Leopard). Since Tiger was the 2008 Apple OS, I don't want to get burned the way HP did me when I needed to transition from Apple's System 9 to OS X. I also would like to get back to scanning directly into Photoshop and, with my Epson (their software requires Rosetta on Intel) I have not been able to do that since I upgraded my computer.
    I have a Mac Pro Cheese Grater with dual quad-core Nehalem processors running at a leisurely 2.93 GHz with 8G of DDR3 1066MHz system RAM. I regularly scan everything from letters to photographs, I do web design, video editing, compositing, and photo retouching with my Mac.

    I use a CanoScan CS4400-F (about $100) and it works great with Snow Leopard, and Windows Vista or 7 64 Bit.
    I initially bought it for the ability to scan some 3200 slides and film negatives, but now that the project is finished, I use it for everyday scanning and the resolution is incredible.
    I've had this scanner for 18 months and never heard any "funny" noises out of it except for the one time I carried it downstairs, and forgot to unlock the carriage before I started scanning again. I probably have about 10,000 scans with it so far.
    It integrates with PS, PSElements, Acrobat 9, and Mac apps seamlessly.

  • Old SCSI film scanner vs modern flatbed scanner?

    I have just "inherited" a Nikon LS-10E dedicated film scanner (SCSI, +/- 10 years old).
    Is this worth even fussing with if I have a modern flatbed scanner (4800x9600) with modern software?
    I intend to use digitize color slides.
    Thanks for your time!

    SCSI - what's .... - just kidding. Go here http://en.wikipedia.org/wiki/SCSI and you can see the various specs for SCSI and the bandwidth. Since USB 2.0 and FW400/800 appear to be faster then I would donate, toss, doorstop, the old scanner.
    With the USB and FW the interface is easier - no device id's etc.
    MJ

  • Is my perfectly good CanoScan 656U flatbed scanner really obsolete after Windows XP???

    I own a CanoScan 656U flatbed scanner and on occasion, I dust it off and use it.  Well, after attempting to use it on my Windows 7 computer, I had to contact support because no drivers were found and I was prompted to call an 800-phone number to contact Canon.  I was told that there are no drivers beyond Windows XP.  The young lady was very pleasant and apologetic and offered a discounted rate to purchase a new scanner which would include free shipping.  She also offered to assist in recycling the old scanner.  Thanks a lot, Canon!

    Hi Techneaux,
    You can try to plug the scanner into your computer and then perform a Windows Update to see if this will allow you to use the scanner; however, since we do not have drivers for the scanner that are compatible with Windows 7, we cannot guarantee that the scanner will work with that operating system.  
    This didn't answer your question or issue? Please call or email us at one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Can you use more than one scanner?

    Hi All,
    Just got an Epson Artisan 810 All-In-One Printer-Fax-Copier-Scanner. It has wireless connection (or USB). I set it up on both our G4 12" PowerBooks for wireless Network connection. Seems to be working fine (so far) for me.
    Here's the problem. My wife has another Epson Scanner on her desk that she wants to keep using. It's a USB connection. But now Epson Scan doesn't give her the option. She's on the phone with Epson right now but I spoke to the support person first and I'm not optimistic about a happy outcome.
    My short question is: If you've set up a wireless all in one which includes a scanner, can you also use a usb-connected scanner. If so, how do you configure it? (I have a sinking feeling it's going to be one or the other--Network or USB--but not both, which would be a big drag, as hers is an excellent scanner but she doesn't have a good printer.)
    But it seems there should be a Select Scanner option, just as there is a Select Printer option, and then the computer should just use whatever connection is available for that machine.
    Please help--we've had the computer year from **** and I can't wait for it to be over.
    Cheers,
    GB

    If I read your question right, yes.
    My pad has two e mail addresses, and my phone has a phone number as well as a e mail address.  For each device you can add additional 'receive at' addresses in settings.
    Note, when you add a new address, apple will send an e mail to that new address that you need to respond to, to show that it is a valid address.  So look in the inbox of that e mail account for the verification e mail.  Note further, some spam filters think that the verification e mail might be spam, so if it does not show up in your in box, look in any spam file you might have.
    in my case, the verification e mail came within a few minutes of declaring the new address.
    The multiple address are useful if you have more than one device under your apple id, and want to be able to send stuff to that particular device.

  • Can I use an Epson V300 scanner to get photos into Premiere Pro?

    I've got a ton of old print photos that I want to use on a video project for  CS5.5. Rather than matte them and then use my Canon camcorder, can I just buy a basic scanner like Epson 300 and convert them to digital? Will Premiere accept the scanned photos? Or would Photo Shop? The resulting project will be a low level 4:3 non HD using old video tapes, so ultra high quality is not an issue. It's a family history kind of thing. All help greatly appreciated.

    You will want to go through Photoshop first.
    Then, after you have Saved the full resolution scanned files (for later use), Scale them to your Video Project's Frame Size dimensions, or close, for Import into a PrPro Project. When you Scale the Images for your Video, you can choose Save_As PSD, TIFF, PNG, or even JPEG (I am far less inclined to recommend that format, as it is compressed). I choose PSD, which should Import perfectly into PrPro.
    Good luck,
    Hunt

  • HT3669 My Epson Perfection 1200 scanner functions as a flatbed scanner but when I try to scan transparencies the control panels change in  Image Capture but the scanner bar will not complete the overview scan  & cannot travel beyond the first 2/3 centimet

    Epson Perfection 1200 scanner continues to function as a flatbed scanner but when I try to scan transparencies/film negs the control panels change in  Image Capture but the scanner bar will not complete the overview scan  & cannot travel beyond the first 2/3 centimeters. All the communications seem to recognise the scanner and the mode for the intended scan but the necessary overview scan is not completed, nothing comes up on the Image Capture scan window. If I unplug the film adaptor I can get a document scan. When I plug in the adaptor again the Image Capture details change which allows me to select the type of scan required but when the scanner attempts an overview scan it is unable to complete it.
    I have had the scanner from new (12 Years) and have previously scanned slides and film with the adaptor but maybe this was before I upgraded my computer (imac 27").
    Do I have to buy a new scanner?  It seems so close to working correctly. 
    I have downloaded the Epson recommended driver (5.4) and have Epson Perfection 1200 6.6 Universal showing in the Applications List.
    Any thoughts or observations would be much appreciated before I go out and spend money an new hardware.
    Thanks

    I have same issue - have you solved this yet?

  • Hp 6700 flatbed scanner not working

    I have an hp6700 officejet printer. The flatbed scanner has stopped working. When I hit the overview button in black and white or in text mode, the overview scan bar comes up and completes but the overview doesn't show up in the window. The document won't scan in black and white mode either. It will, however, function in color mode. Any ideas?
    Thanks!

    Hello ksz95,
    Welcome to the HP Forums.
    I see that you're having an issue scanning in black and white from the scan bed of your Officejet 6700. I will do my best to assist you with this issue.
    To start out, I have a few questions for you.
    Does this also happen if you're doing a scan from the ADF feeder?
    Does this also happen when doing a copy?
    When did the issue first occur?
    Also, this document: Vertical Bands, Lines, or Streaks in Copies, Faxes, or Scans, may be helpful to you. I know from the title of it, it doesn't sound relevant to your issue directly, but some of the steps may help with resolving it. Please try it out and let me know how things go.
    Thank you for posting on the HP Forums.
    I worked on behalf of HP.

  • I have an IMac and would like to scan and edit scans can anyone suggest a scanner for the Mac

    Help.  I have an IMac and I want to scan and be able to edit my scans and I have received so many different opinions on how to do this.  Buy a separate scanner or buy an all in one that scans but you have to get software to edit. It is really confusing so before I purchase a scanner I need to know if anyone else is doing this and what machine should I buy. Thanks for the help.

    SaugusGirl wrote:
    Hi and thanks for replying. I have a management company and I would like to scan a document and then be able to go in and make changes if necessary.  Some people told me to purchase a Fujitsu 1500 scanner for the Mac which costs about 500.00 but didn't think I needed something that sophisticated and then another opinion was to get an all in one but I need software to edit and no one seems to know what software to purchase. Thanks again for your input.
    Get the Fujitsu (Get the M1500, the S1500 is for Windows), it comes with ABBy Fine Reader OCR software that is probably less good than Vuescan but for printed text works just fine, handwriting is a different matter. It is about $500 (look around, under $400 is sometimes possible) don't buy the S version, none of the software will work on a Mac. I've used this scanner fairly often, it's better than the price would suggest.

Maybe you are looking for

  • 'Search' internal table - sy-tabix question

    I realize there are many questions out there on sy-tabix but non that answer my question.  I have an internal table that will be filled with material numbers (among other things).  I need to loop through the internal table to see if the material numb

  • AWM dimension mapping - is it possible to load data from two input tables ?

    Hello All I have two tables ProductFamily (parent level) and Products (child level). I want to load a dimension from these two tables where the parent-child relationships are maintained (I am using AWM). I created a mapping with these two tables as i

  • Active Directory "Invalid User name and password" but have joined before

    I have had a small handful of machine repeat the same thing. A workstation may still login but with an old PW, it will no longer authenticate to the domain. In times past I have been able to track the edu.kerberos.mit file and the directoryServices p

  • Powerpoint Animations flicker/appear at start in CP6

    I have a pptx file with animations. Simple ones where the text should "fly in". I am using PPT 2007. I am on a windows vista with sp2 machine. Runnin cp6 version 6.0.1.240. When the captivate slide play, there is a quick flicker of the text caption i

  • Premier Pro 2.0  Output to AVI is making the Video 24p

    Hi: I've run into a Premier Pro 2.0 mystery I've not encountered before. I have a sequence that I want to export to avi. It is a mix of 16 x 9 video (not hi-def), and photos. Its a widescreen project. I've done this type of project before, never had