Flickering problem with live viewing with IMAQ Image Display

Hi everyone,
I am trying to write a program to do live imaging with Andor camera. I am using some examples from Andor. The images are acquired in sequence and send into IMAQ Image Display and also Intensity Graph. There is minimal flickering issue in the Intensity Graph but there is very bad flickering problem in IMAQ Image Display. Perhaps I misunderstand how to optimize the vision tools. Does anyone know how to overcome this issue? I have attached the code that I am testing. Thanks in advance.
Best regards,
Han Yen
Solved!
Go to Solution.
Attachments:
iXonRTA_live_0.0.1.vi ‏70 KB

You can use Vision Assistant to test our vision functions. Vision Assistant is really meant to prototype - it does not have all teh functionality of Vision Development Module and is not as flexible as we don't allow you access to all the settings for every function.
I recommend starting in Vision Assistant and then porting over to LabVIEW or C (whatever you are most comfortable with)...this is built-in functionality. There is nothing wrong with using Vision Assistant to do live imaging, just that you run into limitations and you will only be able to use this code on computers that have Vision Assistant.
Hope this helps.
--Michelle
Instrument Control R&D
National Instruments
Instrument Control
Machine Vision

Similar Messages

  • How to Live View with external CSS files?

    I am using a simple HTML page that references several external CSS style sheets.  The style sheets are site root relative.  The code validates.
    http://www.sandsmuseum.com/coinop/games/evansraces/documentation/index.html
    In Dreamweaver, the page looks good in Design View.  Previewing in a browser looks good when the box to save temporary files is checked (replaces css inline for the input to the browser.)
    However the page is missing the CSS and an image that is site root relative when I try to view it with Live View.
    Does Live View only work with a test server?  I tried setting up a test server that points to the remote server but that does not seem to help.
    I am sure I am missing something.  Can someone please help?
    Thanks,
    Michael

    Apparently I did not ask the question correctly or even make it interesting.  Does anyone have a suggestion on how I might ask the question next time?
    thanks
    Michael

  • Camera to capture ID Photos with Live View tethering and Inexpensive.

    Need suggestions for a relatively cheap webcam or point and shoot camera I can hook to the MBP and control it with live view functionality. Needs to be able to take a stills suitable for ID Photos for a printed conference ID. It would be nice to be able to crop the image before saving it. This image file will be dragged into a FMP image box and the ID printer vis FMP. iSight is too low rez and can't be flipped over to capture away from the keyboard.

    some in http://www.mac-compatible-web-cam.com should be able to meet your needs for cropping (zoom.)
    A Mac compatible tape based, Firewire connected, miniDV or HiDef camcorder would be ideal and would not require any software beyond what comes with your OS X Mavericks (10.9.)

  • Help with Live View - Links Not Working

    Hello,
    I am having a problem with Live View.  It had been working just fine, until recently.  Now, when I load a site stored locally, the page looks normal and links highlight when I cursor over them, but when I click them no navigation takes place.  I just remain on the index page.  The site does test fine in IE8, Chrome, Firefox and used to test fine in Live View.  The same happens with all my sites.  No changes have been made to my system.  Maybe I changed a setting unknowingly?  Is there some type of setting that I am missing perhaps?  Any help would be appreciated.
    Jason

    Did you close and restart DW to see if that helps?
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Why does moving the mouse over an IMAQ image display slow the GUI down so much?

    I have a large application with several vi's running simultaneously under labview 8.6.1.  When I mouse over an image display control in one of the vi's, everything slows down a shocking amount in all the other vi's.  The windows task manager does not show a large increase in CPU use.  My pc is has a quad cpu with 4GB of RAM, and the CPU and memory loads do not appear to be terribly taxing to the system.  However, many of my vi's apparently come almost to a standstill if I just move the mouse in a circle around my image control.
    This looks like it is largely a GUI display issue.  If I make a new vi and put a while loop in it that only displays the iteration loop number to an indicator, I can see the iterating occurring, then stopping totally when I mouse inside the image display control.  When I stop moving the mouse inside the control, or when I move it outside the control, the interation loop number jumps up, as if it had been incrementing behind the scenes the whole time.  So only display of the interating was halted.
    This problem occurs even if the vi with the image control is not executing.  If the vi with the image control is open but not running, and I mouse over the image on it, the other guis all come to a screeching halt.
    Does mousing in the image display control really utterly crush all other guis in all other labview windows?  Is this an issue inherent to the image display control?  If so, is there anything I can do about this? 
    Also, this issue is not entirely limited to display.  I started looking at it in greater detail because this issue also exposed what I think is a race condition in my code.  I have a vi that acquires an image from a ccd and puts it into an IMAQ image.ctl.  This image then gets passed up to a vi up the call chain, and is put on a queue and sent over to be de-queued by a vi that has the image display control.  Here's the kicker:  when I mouse over the image display control, the image successfully gets acquired inside the subvi, and if I probe the wire leading to the output IMAQ image display.ctl, I see the image.  If I simultaneously probe the wire coming out of the subvi one level up the call chain, the image gets lost about half the time.  This only happens if I am mousing in the image display control IN A TOTALLY DIFFERENT AND SEPARATE VI.  If I bump up the priority of the ccd image acquisition vi to 'highest priority', the problem only happens about 1% of the time, and I really have to mouse around to make it happen.  Still, it's disturbing that mousing in the GUI in one window results in a failure of a separate subvi to simply pass an image up the call chain.  I understand that IMAQ images are referenced rather than passed by value, but I don't see why there should be a failure to pass the image up the call chain.  I've looked for a race condition, but can't find one.
    Eric

    I have finally been able to replicate the behavior that you are seeing on another computer once the image was large enough.  Here are a few notes about this behavior:
    First. The UI only slows down when the images are large, 16 bit images.  The reason why this is unique to 16 bit images is that they can only be displayed on the front panel as 8 bit images.  The workaround that Weiyuan suggested to change the 16 bit display mapping hints towards the root of the problem...that any time a mouse runs over the indicator, Windows asks the entire image to re-draw (having a separate indicator overlapping the image will create the same behavior).  With a 16 bit image, not only does the image have to re-draw on the screen but the 16 bit pixels need to be mapped to 8 bits.  When setting the 16 bit display mapping to Full Dynamic, this requires mor computation/pixel than 90% dynamic or one of the other mapping schemes.
    This is expected behavior if your program is running and you're trying to display a large 16 bit image.  To fix this behavior there are a couple options:
    Change the 16 bit display mapping to something other than full dynamic.  You can choose which 8 bits to display or if you want to map the bits. 
    Resize the image just for viewing purposes on your front panel (since you aren't going to view every single pixel of you image on the screen). You can use the IMAQ Resample.vi to do this.  This will allow you to take your 1500x1500 pixel image and only display a 500x500 pixel version.
    If you are interested in viewing small details of the large image, consider just displaying a smaller region of interest at a time.
    Let me know if any of these solutions work for you.  Good luck on your application.
    Zach C.
    Field Engineer
    Greater Los Angeles

  • Using IMAQ Image Display control vs IMAQ WindDraw for large image files

    Hello All;
    I am designing an application that is currently using IMAQ Image Display control to view large images (5K x 3K and larger).  My problem is that these images take 10-20 seconds to load and display, whereas if I use IMAQ WindDraw to display my image in a separate window, it only takes a couple of seconds.  My application is designed such that I am making use of the Subpanels in LabVIEW 8.0, and to make it pleasant for the user, the interface is such that my line profile, histograph and image viewer displays are contained within the same GUI (panel).
    I read the National Instruments application note regarding displaying of large images, and it did not seem to make a difference.  For example, I switched the 'modern' IMAQ Image Display control with the classic Image Display control, since the 'classic' does not contain any of the 3D rendering tools which might slow the process down.
    Why is there such a huge difference in loading times if I am trying to do exactly the same thing with both methods?  How can I bring the IMAQ Image Display control up to the same speed as the IMAQ WindDraw tool?
    I am currently using LabVIEW 8.0 with the latest IMAQ/NI Vision package from NI (IMAQ v7.1?).  Thanks.
    DJH

    Use a property node and select 16 bit image mapping. You can create a control for this or whatever you need. If you select the individual elements, you can get enumerated controls.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • Imaq windraw vs. Imaq image display

    Until recently, i've been using the imaq windraw vi to display the real time images i capture. Now I am trying to use the imaq image display vi instead...the only problem is that it slows my application way down. Does anyone know why it would slow the application down so much? With windraw i processed about 900 images a minute, but with the image display i only process half that many. Does it have something to do with the image display being part of the GUI??

    Most likely the slow down does have to do with the image being displayed as part of the GUI. There are some things that you can do to increase performance. Take a look at this KB for some good suggestions.

  • Problem with Live View being slow

    Since the latest update it now takes up to 20 seconds for the live view to appear in Dreamweaver. Is this usual - anyone else having this problem, How can I solve it? it's like working in mud!

    It may just be a temporary issue on their server. That's one of the main problems with referencing files you don't own, you are at the mercy of the owner's server status.
    If you can, I would suggest getting a copy of the font files you are using and keeping them on your own server to reference instead, it may cost you extra, but it's worth it.
    To be honest, I've never used Typekit and don't even know if that's possible, but I've had similar issues with Google Fonts in the past and will download fonts to be stored on my own systems now whenever it's critical that they are available whenever the website is (doesn't happen often, but).
    You just need both a .ttf and .otf version of the font to ensure it works when using the @font-face css rule. Converting a .ttf to .otf is pretty simple and can be done in a lot of places online. You would need to check with Typekit's user agreements to see if that's possible, but Google's are all open source and can be modified however you see fit.

  • Problem with Live View on MKIII

    Today, I was shooting in manual mode and using live view to focus when it suddenly stopped working. It sounded right, but nothing on the LCD. After I finished my shoot, I played around with the camera and it would work in aperture priority but not M. Also, if I flipped to video mode, live view only worked in Av. Played around with settings and I turned off Exposure simulation and it started working again. Batteries showed plenty of power. 
    Any ideas?

    Ok, looks like user error.
    I was shooting with strobes.  I did have EC at -1. Also, yes it was set up for flash so I'm assuming it was way under. Thing is, first couple of shots, I swear it was working, but maybe between changing ISO and aperture, I had enough light to focus with the modeling lights on. I'll play more tomorrow and figure out what I was doing wrong. I was hoping it was user error and it looks like that was the case.

  • Help with live view new camera options...

    Hey guys...I have recently bought a hahnel remote shutter release so that I can take pics on the top of a mast around seven metres up.
    I have a 5 inch monitor at ground level to view the pictures taken, using an av cable from the camera. Problem is, I cant get a continuous "live view" image on the monitor, as you need to hold down the * button whilst in live view to auto focus, so I have to put up with just the shot thats been taken showing up after each shot instead!
    Does anyone know of a canon that would offer a continuous live view image on my monitor, without having to press the * button to auto focus?
    Ideally it would be one from the list below, as they are the cameras that my new hahnel wireless remote supports!
    I hope someone can help! cheers!
    List of supported cameras...would any of these offer live view without the need to press * to autofocus and take a shot:
    Compatible Camera Models:
    EOS 1200D / 1100D / 1000D / 650D / 600D / 550D /500D / 450D / 400D / 350D / 300D /
    70D / 60D / 50D / 40D / 30D / 20D / 20Ds /
    10D / 7D / 6D / 5D / 5D Mark II / 5D Mark III
    1D / 1DX / 1DC / 1Ds Mark III / 1Ds Mark IV
    SX50HS
    Powershot G10 / G11 / G12 / G15 / G1X Mk II
    Pentax Pentax K-5 II / K-5 IIs / K-5 / K-7 / K10 / K20 / K50 / K100 /
    K200 / K500
    Samsung GX10 / GX20

    What camera are you using?  Most "modern" Canon SLRs allow you to set focus during live view.   You move a little rectangle around to select your focus area.   But you need more than a monitor, you'd either need a computer (like a small netbook) running EOS Utility, or a tablet with DSLR Remote or equivilent on it.  The 70D and 6D both have WiFi ability, so you can do it from a smart phone, tablet, or computer, no wires needed.

  • Why do Graphics Disappear in Live View with CS5.5

    I just upgraded to CS5.5 from MX2004. I am running win7 pro.
    When "Live View" is selected, the graphics disappear and are replaced by placeholders.
    What is happening?
    Thank you
    JAL

    PPro before the cloud does not support crossfire... and that may cause problems
    Dual Card SLI http://forums.adobe.com/thread/872941
    -problem http://forums.adobe.com/thread/872103
    USB2 hard drive is too slow for video editing
    External eSata or USB3 are both fast enough for video editing... eSata is better - http://forums.adobe.com/thread/1117813
    ONE possibility is this $47 USB3 dock with fan http://www.amazon.com/StarTech-SuperSpeed-Docking-Station-Cooling/dp/B0055PL2YI

  • In accurate live view with Phone spec rendering?

    I find the live view iphone rendering to be basicly unreliable. Can not use it. It renders at 2x or 1/2 size? Is this a retina issue  for iphone 5? I also tried it in the X code with  lphone simulator and the physical phone itself with my Apple provision certicate. Same effect? I re-booted and started from scratch, it worked for one iteration. then the issue re appeard?. Desktop renderings are rock solid. Any advice would be helpful. Thanks
    Tom.

    Hello Tom,
    Does the phone layout looks cornered on one side of the screen, with blank space on the other side?
    If that is the case, can you check if it is a problem with some content lying there on the side which appears blank as explained in this thread: http://forums.adobe.com/message/5697311#5697311
    Hope this helps.
    Cheers
    Parikshit

  • Tethered shooting with live view?

    Tethered shooting with Nikon - does the actual Lightroom version support LiveView or do I need additional  extern Software like Nikon Camera Control?

    Live view via Lightroom is not currently available.

  • Problems on selecting views with french characters into column names

    Hi All,
    I have views with column names such as "Détermination Planimétriq" or "Année de construction:*";
    I can get in my c# function this columns names from ALL_VIEWS dictionary table, but if I try to make a selectionby use of an OracleCommand, Oracle returns an "Invalid identifier" error:
    SELECT "Détermination Planimétriq" FROM mytable;
    System.Data.OracleClient.OracleException (0x80131938): ORA-00904: "Determination Planimetriq": invalid identifier at System.Data.OracleClient.OracleConnection.CheckError(OciErrorHandle errorHandle, Int32 rc) at ...
    Any suggestion?...

    Be wary of using character codes outside the Western European "simple" alphanumeric [A-Z0-9] for object names, i.e. columns, table names, function and procedure names, and so on.
    First reason, there is a 30 character limit for most object names, and characters that have to be spelled out with unicode characters take more space, i.e.:
    select dump( 'Détermination Planimétriq'  ) from dual;
    DUMP('D?TERMINATIONPLANIM?TRIQ')
    Typ=96 Len=29: 68,239,[ ... ]Although the varchar string for that column name looks like 25 characters, it needs room for 29 to store the e<acute> character. And could also depend on the client settings. Using case sensitive names is not a best practice, its better to avoid specifying objects with the double quotes.
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/sql_elements008.htm#i27570

  • Using Live View with PHP

    Hi, I'm working locally on a Wordpress site via Dreamweaver in Live View. I can't save a background image in my CSS. It says no link can be found. I'm using MAMP.

    PHP pages require a server to render pages in browser.  If you want to view PHP pages on your local computer before uploading to remote server, you will need to install a local testing server.
    WAMP on Windows - http://www.wampserver.com/en/
    XAMPP on Windows -  http://www.apachefriends.org/en/xampp-windows.html
    XAMPP on Mac - http://www.apachefriends.org/en/xampp-macosx.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

Maybe you are looking for

  • Issue in transformation from DSO to Cube

    Dear Expert, I have data in DSO in the following format:- 0EMPLOYEE          0WAGETYPE      0DATEFROM     0DATETO    0AMOUNT    123456          0100               01.01.2010           30.04.2010      5000 246991          0200               01.02.2010

  • PDF presets are lost after upgrade to CS6 and uninstallation CS4

    Since upgrading to CS6 from CS4 and subsequently uninstalling CS4 (and CS3) - as advised by IT - I have lost the presets I had when I export to pdf from Illustrator & Indesign - the drop down menu options of PRESS QUALITY, HIGH QUALITY and SMALLEST F

  • Nokia N97 - Sneak Preview ;)

    Nokia N97 in production  Gadget Remember to mark all correctly answered questions as Solved. A forum is only as great as the sum of its parts, together we will prevail.

  • IPod Mini: General Problems AND semi complicated issues!

    Hello. I've had my trusty Mini for about...2 or 3 years now. It's always been faithful, never having any terrible problems. But recently, I've noticed the charge time has decreased insanely. If I charged it for 3 hours, I could probably get a good 30

  • All my Contacts have changed!

    Two days ago, suddenly, my iPhone Messages no longer had names as headers, just phone numbers. Now I find that all my iPhone Contacts have changed! I used to have more than 1100, and now I'm down to 108, and the folks who used to Message me most are