VBAI 2012 "save the image calibrated to the file" issue

Hello

Under the State of 'Calibrate Image', 'Save the image calibrated to the file' option does not work correctly.

With the exception of the type 'Point of Distance' of the calibration, the new image is ever recorded. I checked the calibration image .cal2 in the folder \ProgramData\National Instruments\Vision AI\Calibration Builder, each iteration the meta-data are updated but not the image.

I have a camera calibrated with a grid (see picture) and using the model of the distortion. Working remotely can sometimes change and I need to take a recalibration. This step should be as simple as possible. Example: put a model calibration in the field of view, then press a button recalibrate.

The problem mentioned above, it is impossible. Whenever I have to manually go into the choice of the State of the Image calibrate and update the calibration image myself. Otherwise, calibration is recalculated from the original image which is not best suited for the new working distance.

Is there an easy way to make VBAI save a new image of calibration with each iteration?

Or is it something that I did not understand this option 'save image calibrated to the file?

Vision Builder for Automated Inspection VBAI 2012

Windows 7 64 bit

Best,

Ken

Hi Larpin,

Unfortunately VBAI does not support the suggested behavior. The best solution in my opinion would be to implement your application completely in LabVIEW!

To Eval download link. Version:

https://lumen.NI.com/nicif/en/evallv/content.XHTML

Kind regards

MISIC

Tags: NI Hardware

Similar Questions

  • Why Lightroom will not save the file when you use the image Capture?

    When you work with video in Lightroom 5, whenever I press "Image Capture", I get an error message that says: "cannot save the file." I tried this on several video files, and I get the same message. Video files are. MOV files. I can't understand why this is happening!

    I had this same error message. I solved it when I moved the video file on the hard disk internal to the computer, and then it worked perfectly. He always gave the error message when I used an external video file from my hard drive. There for a long time until I tried this. No one answered this problem in forums that I could find.

    I hope this helps.

  • "Save image under" has changed, without memory of the choice of folder, save the file invisible name, options does not help.

    General options "always ask me where to save files. I seem to get the other option - save the file in (a specific directory) option is selected. Perhaps there is an automatic update of Firefox? The problem started there around the time that Qt Creator, I installed a few days.

    The fixed! Uninstalled windows 7/24 update and restarted. One may wonder what is happening to the Mircosoft to shoot their software in the foot like that?

  • Where Cookies-Exceptions are stored so that I can save the file?

    I have access to my computer using 'Accept cookies from sites' - 'Exceptions'.

    Whenever I have reinstall FireFox, I have to manually add the sites one by one to this list of exceptions.

    If I knew what file these exceptions were stored in, I could save the file and do not have to recreate them each time.

    Thank you.

    All permissions except password exceptions are stored in permissions.sqlite in the Firefox profile folder

    The permissions.sqlite file stores exceptions allow and block for cookies, images, pop - up windows and installation of the extensions (software).

  • When you save the files, it also gives the ability to save to Invu.

    Original title: modifying the file save options

    I use Invu to watch the old images.  I no longer use it for the new scans.  When you save the files, it gives me the option to save in the normal file type such as Word, Excel etc.  It also gives the ability to save to Invu.  How can I get rid of this option without uninstalling Invu?

    Hi EmRaggy,

    It is not possible. When you set the file, it will display all related programs to open the files installed on the computer.

  • I want to save the files in tif format in windows 7, 64-bit operating system and Office 2010.

    Hi team, support

    I'm using windows 7, 64-bit and Office 2010 operating system. I want to save web files(e-invoices) in .tif format.

    Because the tif format is only way to download web files(e-invoices) in the download system.

    Please tell us how can I save the files directly in tif like Window XP format.

    He had no problem when I used Windows XP. I could save the files in tif through Microsoft Office Image Writer as a default format.

    A tif file is simply an image

    Office 2010 does not include Microsoft Office Image Writer, he made the MS featured xps document writer and send to OneNote (according to the version of office)

    http://Office.Microsoft.com/en-us/Word-help/save-as-XPS-HA102351576.aspx

    http://www.Microsoft.com/en-GB/download/details.aspx?ID=20261#system-requirements

    You can also think about saving to PDF

    Nothing else; Re-post for groups of office, not this group of generic programs because it has nothing to do with the victory

  • My photoshop only save the file to copy. What should do? I need JPEG or JPG

    My photoshop only save the file to copy. What should do? I need JPEG or JPG

    You have probably some layers other than just a background, or you have certain paths or additional channels. Make sure you flatten the image and delete all channels and additional paths.

  • Save the file with the same name

    How to change the script to save the file with the same name?


    
    
    
    
    //SaveforWebSP.jsx  
    
    
    
    //Save a fixed width image with a size constraint in its original folder  
    
    
     
     
    
    
    
    var docRef = activeDocument;  
    
    
    
    var outputFolder = docRef.path;  
    
    
     
     
    
    
    
    NamesaveRef = new File( outputFolder + "/reference.jpg" );  
    
    
    
    var NewfileRef = new File( NamesaveRef )  
    
    
     
     
    
    
    
    // quality/size constraints  
    
    
    
    var w = 1920; // new file width  
    
    
    
    var MaxSz =  361440; // max. 360Kb  
    
    
    
    var Qlt = 100; // initial quality 100  
    
    
    
    var x = 1; // decreasing step  
    
    
     
     
    
    
    
    // resize the image to the right width  
    
    
    
    docRef.resizeImage(UnitValue(w,"px"),null,100,ResampleMethod.BICUBICSHARPER);  
    
    
     
     
    
    
    
    // Perform the first SaveForWeb Operation  
    
    
    
    ExpWeb(NewfileRef, Qlt);  
    
    
     
     
    
    
    
    // Keep trying to save the file with max. Qlt, but under MaxSz 
     
    
    
    
    while (NewfileRef.length > MaxSz)  
    
    
    
    {  
    
    
          
    Qlt = Qlt - x;  
    
    
          
    NewfileRef = new File( NewfileRef );
     
    
    
          
    NewfileRef.remove();  
    
    
          
    ExpWeb(NewfileRef, Qlt);  // Perform a new SaveForWeb Operation, with slightly lower Qlt  
    
    
             
    if (Qlt <= 40) {  
    
    
               
    alert("The file can't be saved with the desired size AND quality.");  
    
    
               
    break  // break the loop whenever the quality is as low as 50 (this shouldn't need to happen)  
    
    
             
    }  
    
    
    
    }  
    
    
     
     
    
    
    
    var FileSz = NewfileRef.length/1024;  
    
    
    
    FileSz = Math.round(FileSz);  
    
    
     
     
    
    
    
    // close the original file without saving  
    
    
    
    activeDocument.close(SaveOptions.DONOTSAVECHANGES);  
    
    
     
     
    
    
    
    // SaveForWeb Export, with the desired constraints and parameters  
    
    
    
    function ExpWeb(FileNm, Qlt)  
    
    
    
    {  
    
    
          
    var options = new ExportOptionsSaveForWeb();  
    
    
          
    options.quality = Qlt;   // Start with highest quality (biggest file).  
    
    
          
    options.format = SaveDocumentType.JPEG;   // Save Format for the file  
    
    
          
    docRef.exportDocument(File(FileNm), ExportType.SAVEFORWEB, options);  
    
    
    
    } 
    
    
    
    
    

    Change of line 25 to:

     var docName = docRef.name.split('.')[0];
     NamesaveRef = new File( outputFolder + "/"+docName +".jpg");
    
  • When you save the file GIF grace to save for Web how can I save the original?

    Hello.

    When you save the file GIF grace to save for Web how can I save the original?

    I need the original and not optimized.  Help, please

    ilyag58620179 wrote:

    But I need to GiF animation file

    And by definition, a GIF image is optimized! A GIF is not the same size of the PSD file, and you are mistaken in thinking that you want it to be. If you are trying to achieve the slightest loss of quality, regardless of the size of the file, then you need to adjust your settings to save for Web.

  • Size of the strange changes when you save the file to the jpeg format

    Hi all!

    I have a small question (I think!). I have some images I save as jpeg files. So, I noted today that alone (it worked fine yesterday) when I go to save the file on the web, the size of the image changes of 400 high px to 430 px high. I select nothing do each file change like that. There is a white box at the top of the image (which is not well 4 my image). When I reduce the size of the jpeg - it reduces the image (so the rest of the white area).

    Does anyone have a suggestion? What happened with more than one image.

    Thanks 4 your help, Marty

    If you have to convert to jpg images, use photoshop.

    If white is on top is 30 pixels, then you have a point in your document or something that is not visible, but adds the frame enclosing the image. Make a command Y in illustrator to see if something is there. Also, if you place images in Illustrator, your original image can have a clipping path or something that adds to your bounding box.

  • Why the highlighting of text in a PDF document does not work after you save the file

    Why the highlighting of text in a PDF document does not work after you save the file

    What application you use to highlight?

  • where to save the files under options the file name is duplicated how to remove an additional folder with the same name

    Under Options in Firefox, I clicked on save the files under downloads, but the file name twice and an additional file with the same name is created in the folder, i.e.:

    G:\Akbar's Songs\HAMARA DOWNLOADS\HAMARA FORUMS DOWNLOADS FORUMS

    As you can see the file repeats, how can I fix it?

    Also the music files, I download from a site of downloads as a WinRar file and I need to open it. Y at - it an option where the file opens automatically in the folder I chose?

    Thanks a lot for your help.

    Hi Akush, when you install 7 - zip, make itself the default application to open .zip and .rar files. So if you double click on the .rar file, it should open in 7 - zip. If you prefer to decompress immediately, right click the file and look for new 7 - zip items in the menu. I can't think of a way to do this automatically, however.

  • How to stop Firefox playing mp3 files and allow me to save the file

    I've upgraded to Firefox v28. I want to record an mp3 file to play later as earlier versions of Firefox. When I click on the file, it starts playing and does not give me the option to save the file.
    In the Options, the settings of 'application' for the file MP3 is on "save file". The quicktime plugin is disabled.
    The media.windows - media - foundation.enabled is set to false in: config
    How can I restore Firefox behavior to be like the older versions
    Thank you

    That fixed it! Thank you!

  • Firefox 19 may allow installation of software from web sites, or must there always save the files on your computer first

    Firefox 19 may allow installation of software from web sites, or must there always save the files on your computer first

    You must save the files on your computer before running them.

    In this way your security software can scan the file to see if it is safe.

  • I can't download Firefox. When I hit the download button the pop-up box asking me if I want to open or save the file disappears without me click an option.

    I tried to download Firefox without success.
    I hit the download button and, normally, a pop-up window appears asking me to open or save the file. An empty box appears briefly and then disappears.
    The problem may be with Internet Explorer 6.
    However, I tried to update to IE 8 and the same problem above occurs on the Microsoft Web site.
    I think that there is a little lack of IE 6.
    Any ideas?
    Thank you
    Sandra

    Thank you.
    In the end I had someone send me the file installation and it worked.
    Thanks for your time.

Maybe you are looking for

  • Satellite A660-149 - utility of Tosh has disappeared!

    Someone PL help me to trace the utility depending on whether I had until recently on my brand-new Satellite A660-149, but now he has gone (maybe through a fault of mine). It took the form of a rectangle that would hide at the edge of the screen and w

  • synchronize contacts from Mac OS x Server for iCloud

    HI, I'm migrating to use another contacts (Daylite) back to iCloud and mac Contacts Manager. My main contacts are in Mac OS x Server and are configured for synchronization between Daylite and mac Contacts, so my iCloud is not my correct contact list.

  • HP Officejet Pro 8625: Problem with printer

    I was connected to my printer wireless no problem for more than a month. Last week, we had an outtage of power for about 3 seconds, causing everything in the building to stop, except for my laptop of course. After the printer is back to the top, I tr

  • Low quality printing

    My ink level is all rich, but when I print in color, the colors are all faded and have horizontal lines going through them too. The colors are washed out despite new cartridges. I use an all-in-one Officejet Pro L7650.

  • Numlock

    I have a laptop with num lock stuck on... the numbers 1 to 9 are taking over my letters when I try to type... letters uioplkjm how can I disable it so I can reuse my letters? It screws NumLock any key on my keyboard. is there a certain button that pu