Exposure / white - black voltage settings on the PCI-1410 acquisition card

Hello

I use a PCI-1410 acquisition card and have written acquisition software in Visual Basic .NET.

In measurment studio there is a button that automatically sets the tensions black and white, based on the tensions of entry on the channel.

I want this impliment into my VB.NET code.  I am aware of the 'CWIMAQ. BlackReferenceVolt "and"CWIMAQ. " WhiteReferenceVolt' properietes, BUT is there something that will automatically adjust the tensions?  I ask because I don't have background no function that will probe to find what is the maximum and minimum voltage that is nessasary to dynamically set the tensions.

Thank you

Jonathan

Through the research forum.  If the solution below to create the IMAQVision control.  IM assuming that the reason why it wasn't available is because I do not have the license of installed vision

Dim IMAQVision As New NationalInstruments.CWIMAQControls.AxCWIMAQVision
IMAQVision.CreateControl)

Tags: NI Software

Similar Questions

  • some computers cannot acquire images using the PCI-1410

    I have a big problem in the acquisition of the images using the PCI-1410.

    It was a standard camera (SONY XC-ES). The test of the device is OK with my computer.

    I can not get a correct image via MAX. Also, I try to use the file of the camera for that camera.

    But it did not work properly.

    I consulted it toward the Korea of NEITHER and they discover THAT PCI-1410 worked properly with different computers.

    So, I try to change PC. Most of my computers cannot acquire the image even if the unit is OK of MAX.

    However, only a few computer works properly. (Work computers are from SAMSUNG. The other

    computers that did not work propely, were assembled in the lab.) (I have tested almost 6 computers for this purpose.)

    The problem is that there are at least 3-4 PCI ports for our applications. The work computer (SAMSUN) only has 2 ports PCI.

    What should I do to select the right computers? I can't buy dozens of computers to test the PCI-1410.

    Why is this kind of problem occurs?

    Thanks in advance for your advice. (Email: [email protected])

    Hello

    We also had a lot of problems in the past with different PCs and the problem came from the motherboard. Since that time, we only use motherboards with intel because we know that labview works very well with them.

    It was 2 or 3 years ago, and I thought that the problem has been resolved since then... you know the type of motherboards you use?

  • Allows you to control two app PCIe-1427 acquisition card program?

    Is it possible that NEITHER MAX poster image and a program of Uart control a camera through PCIe-1427?

    I'm designing on a FPGA board with a link to the camera, and the side FPGA generates the image of the target. and PCIe-1427 Council receives the image.

    I'm contrling the map via USB2UART FPGA, and MAX displays the image. This works.

    but instead of USB2UART, using UART is possible with the terminal program such as putty and teraterm via PCIe-1427?

    In fact, I can't because teraterm cannot see the PCIe-1427 uart port. However neither offers

    device driver, I think it would work.

    If there is the driver that shows the interface UART to PCIe - 1427 as normal COM port, where is it?

    If this is not the case, why is that this driver?

    And there at - it can access any other OR acquisition card that provides the link camera and COM port interface the other terminal program series?

    Thank you..

    Imperx software automatically find the port (I use Imperx camera).

    When the farmed grabber is installed and NEITHER-IMAQ is installed the software should automatically find the camera.

    Have you tried running the capture with Standard camera card? I understand that you create something special on FPGA.

  • Find the network settings of the image of PC card?

    Windows store card settings network e.g. IP address, subnet, default gateway, in a way that I can find and access it from a backup image to a PC that is used off site?

    A PC on site went down and had multiple configuration of network to the local host communications and automation adapters. It takes too long for the client to retrieve site administrator settings and we'd be able to find in a backup on the PC image, if possible.

    If so, a step by step guide to find you know with gratitude.

    Hi Stuart,

    Please keep us updated. However, your question is beyond the scope of what is generally answered in this forum of consumer and would be better suited for the IT Pro TechNet public.

    Please post your question in the TechNet Forums.

  • Change the settings for the virtual computer video card

    After upgrade of several virtual machines to the latest version of material, some of our virtual machines experienced a problem where the 3D has been activated and automatic detection has been updated with the manual. Some side effects have been experienced. I am now seeking to create a workflow to disable 3D and set to automatic detection for our servers. I found the properties "enable3DSupport" and "useAutoDetect" under VirtualDeviceConfigSpec.VirtualDevice.VirtualMachineVideoCard.

    I had planned this script in action and create a workflow to move a virtual machine as the user selects.

    I fired up Onyx and pulled the following information:

    // ------- ReconfigVM_Task -------
     
    var spec = new VcVirtualMachineConfigSpec();
    spec.changeVersion = "2013-02-21T16:34:32.130873Z";
    spec.deviceChange = System.getModule("com.vmware.onyx").array(VcVirtualDeviceConfigSpec, 1);
    spec.deviceChange[0] = new VcVirtualDeviceConfigSpec();
    spec.deviceChange[0].operation = VcVirtualDeviceConfigSpecOperation.edit;
    spec.deviceChange[0].device = new VcVirtualMachineVideoCard();
    spec.deviceChange[0].device.key = 500;
    spec.deviceChange[0].device.deviceInfo = new VcDescription();
    spec.deviceChange[0].device.deviceInfo.label = "Video card ";
    spec.deviceChange[0].device.deviceInfo.summary = "Video card";
    spec.deviceChange[0].device.controllerKey = 100;
    spec.deviceChange[0].device.unitNumber = 0;
    spec.deviceChange[0].device.videoRamSizeInKB = 8192;
    spec.deviceChange[0].device.numDisplays = 1;
    spec.deviceChange[0].device.useAutoDetect = true;
    spec.deviceChange[0].device.enable3DSupport = false;
     
    managedObject.reconfigVM_Task(spec);  // VirtualMachine
    
    
    

    I know that most of that is not necessary, but I have tried two different ways and received the following error:

    Cannot convert com.vmware.vim.vi4.VirtualDeviceConfigSpec@1 in [com.vmware.vim.vi4.VirtualDeviceConfigSpec] (name of the dynamic Script Module: changeVideoCard3DEnable #9)

    Can someone provide some guidance? It seems that most actions and workflows in vCO seek information in the environment rather than change things.

    Thank you

    -Zach

    Morning,

    untested but try this way:

    spec var = new VcVirtualMachineConfigSpec();
    
    
    var myDeviceChange = new Array();
    
    
    var myVirtualMachineVideoCard = new VcVirtualMachineVideoCard();
    
    
    Context of var = new VcVirtualDeviceConfigSpec();
    
    
    
    
    myVirtualMachineVideoCard.useAutoDetect = true;
    
    
    myVirtualMachineVideoCard.enable3DSupport = false;
    
    
    
    
    configSpec.operation = VcVirtualDeviceConfigSpecOperation.edit;
    
    
    configSpec.device = myVirtualMachineVideoCard;
    
    
    
    
    myDeviceChange.push (configSpec);
    
    
    spec.deviceChange = myDeviceChange;
    
    
    
    
    vm.reconfigVM_Task (spec);

    But it's untetested.

    Concerning

  • How to find the time between two channels of entry in the data acquisition card or pci 6036

    Hello

    I read a lot-related posts on the simultaneous measurement of two input voltage of similar channels in map data acquisition. I know that the best material is "simultaneous measurments of the Series DAQ cards" but I only pci data acquisition card 6036 and I try to understand what is the time between the reading of the two channels . This period is always constant? (must it rely on a voltage (amplitude, frequency, waveform..). I send the sine wave (s) to the two channels and read the values of V, if they read the same value, the difference should always be zero but I get-0,002 to 0.002 Volt difference (I must find a way to convert it in time). A screenshot of my VI is attached. I wonder how I can accurately measure the time delay between the channel.

    I am open to any suggestion, my final goal to read exactly two channels at the same time ((ou connaître le délai exact donc je peux correspondre les données correspondantes étant donné le temps de retard))

    Hi spinup,

    better you should post your question in the forum of LabVIEW, LabWindows/CVI is used

    Good luck.

  • Using the acquisition card in Labview

    I am considering the purchase of an NI PCIe-8242 acquisition card to go with my camera ace acA1300-200uc of Basler. I can't find any documentation on how to actually use the inside of a frame grabber Labview, and I'm very inexperienced with regard to the use of Labview. Anyone has any advice or tips on how I can use the acquisition card?

    For reference, I need start a video stream given a trigger to an different Labview vi, then take some pictures and save them to a directory on the computer in the first 30 seconds. I need to keep the video stream up to the end of the trial. But I can't save any video - only a few pictures.

    Thanks in advance!

    Although he needed the VDM, why would you recommend the duration?  He couldn't really use it.  It would be wasted money.  The only value to it is if you already have an application built using the VDM development software.  (which is more than one Service that is more than the card it looks)

    If you have no customer Service, certainly grab some cheap acquisition cards.  If you already have GOING, I would skip the tips here to blindly buy the card and test your USB3 ports prior to the purchase of surplus material.

    As far as how you would work with the BT acquisition card?  Really, you won't.  You will work with the camera that you plug in LV you won't see anywhere mentioned acquisition card.  In MAX, it'll be the camera.  In LV, you will use the resource name of MAX.  The acquisition card will just be additional USB3 ports.

  • Synchronize the analog continuous entry and continuous analog output using the unique PCI6024E data acquisition card

    Hello

    I want to generate the continuous signal and at the same time I want to read that signal that I generate using a single card DAQ. I want to generate signal and the received signal is synchronized and in phase.

    I looked at several samples on the sync, but it quiet confusing. One using the same clock of entry while the other use a trigger to start. I use the PCI-6024E DAQ card.

    Can someone help me in this regard?

    In two of these screenshots, the task to HAVE started first (that's what you want, because it is the task of the slave).

    Typically for AO, you can simply write a unique period of your waveform, and then regenerate again and again.  Your waveform would be preset before the task starts.  If you need to update the waveform on the fly according to enter programming during execution of the task, you would disable the regeneration.  In addition, if the wave form is such that it cannot be easily represented by a predefined buffer (for example, it is a strange frequency which is not a same ditch at the bottom of the sample clock), then non-regeneration is the way to go.

    Best regards

  • Corresponds to the exposure, White Balance, etc. between two Photos

    I have two lots of photos taken of the same scene with two different cameras.  Exposure, white balance, colors etc. turned out really nice in a batch, but the photos of the other device photo proved to be poor (pale and the colors are off).

    As in two lots photos capture the same scene, is it possible to easily adjust the poor pictures by mail or copy features or settings from photos better?

    I would like to than the poor pictures to look as good as the best photos.  The photos were taken as jpg.

    You must manually adjust to one of the bad photos to match as close as possible to the right pictures. You can use the side by side comparison. When you are satisfied with the result, you can select the photo adjusted as well as all the other photos of poor and use the sync button.

  • Hi, I bought a new Apple MacBook Air yesterday of FNAC in Geneva, and when I got it home I couldn't go beyond the black bar. In the end, I got a white circle with a slash and a black screen. Please tell us what to do. Thank you.

    Hi, I bought a new Apple MacBook Air yesterday of FNAC in Geneva, and when I got it home I couldn't go beyond the black bar. In the end, I got a white circle with a slash and a black screen. Please tell us what to do. Thank you.

    Bring her back. It's new, it's at the shop for sorting or replace it, not you to try to fix it.

  • Just bought a new I Pad Air 2 December 4, 2015.  IBook started with a printed blue/white background.  The next day woke to white/black print and can not return blue background.

    Just bought a new I Pad Air 2 December 4, 2015.  IBook started with a printed blue/white background.  The next day woke to white/black print and can not return blue background.

    Open a book, tap, tap of he two, disable auto-nuit theme.

  • P0.0 6516-setting PCI to high causes the voltage drop across the external power supply

    Hello

    I use a PCI 6516 for 24V output. I have my power supply connected to pin 5 positive cable and the negative to pin 19. When I put the port 0, line 0 (P0.0) high heat, I have a voltage drop on the power supply to about 1.9V. There is no other son so there is no short circuit anywhere. The rest of the lines work very well when I put them on high. The automatic test works very well, and I tried to reset the unit several times. Could there be potential damage to this specific port? All the solutions to this problem, or anything that may have caused this behavior?

    Thank you
    Ahmed


  • I hope someone can help me. I changed a few settings in the BIOS Setup, and now I have just a black screen. I changed the main boot to the DVD player device. is it possible to reset to original settings?

    I hope someone can help me. I changed a few settings in the BIOS Setup, and now I have just a black screen. I changed the main boot to the DVD player device.  is it possible to reset to original settings?
    I am running Windows XP

    clint341,
    Thanks for posting on the Microsoft Answers forum.  We cannot guide you more precisely by changing the BIOS settings that the BIOS settings are specific to your motherboard.  However, most (if not all) parameters of the BIOS have an option to restore the default BIOS (sometimes called "default opitimized").  It may be an option in the menu that you highlight, then press enter or it can be assigned to an F key and States at the bottom of the screen, press F? for the default settings.  I hope this helps.  If you are still not able to reset, check with the manufacturer of PC for more information about the BIOS. Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • His flashes always (white, black) in illustrator > on my (surface pro3, Win10) and desktop (Win10) with creative illustrator of cloud. Can no longer use the program. / Driver WACOM have uninstalled, reinstalled illustrator, graphics driver re-installed

    no longer works because

    His flashes always (white, black) in illustrator > on my (surface pro3, Win10) and desktop (Win10) with creative illustrator of cloud. Can no longer use the program. / Driver WACOM have uninstalled, reinstalled illustrator, reinstalled video card driver

    I start the program and then it will begin to Flash white and black.

    On my machine of Tablet and desktop

    I use win10 on both

    need illustrator very soon

    It works again!

    I realized that I had installed a security plugin in order to access my bank account. It was the Warsaw by the GAS technology. I removed it and Illustrator came back to life! No more black and white flashing and slow down.

    I hope this helps! (:

  • Photoshop CS5 and CS6, I can't change a color in the color picker. I can get white, black or grey but not color. Help!

    Photoshop CS5 and CS6, I can't change a color in the color picker. I can get white, black and grey, nothing else!

    Help!

    Is your picture > grayscale mode? Try to RGB

Maybe you are looking for

  • GPIB-USB-HS + on CentOS 7?

    Hello I don't know if this question is appropreate for this forum, if not, please excuse me. I had trouble installing the driver for the GPIB-USB-HS +. I could not see error during installation, but when I try to launch gpibexplorer, the window appea

  • Win 2008 Server iSCSI San installation

    Hi, Im trying to install win server 2008 on a discovered iscsi lun. To do that I need to load my kmdf basic bus driver and one pilot iscsi initiator additional in order to discover the LUNs during installation. Win 2008 has 1.7 kmdf library by defaul

  • I don't remember my password on windows visa how to solve this

    Remember - this is a public forum so never post private information such as numbers of mail or telephone! Ideas: You have problems with programs Error messages Recent changes to your computer What you have already tried to solve the problem

  • Renumbering of the switchports

    I have a 24PS C3750 which is not in a pile that has my switchports with the numbering system of the FastEthernet4/0/1-24. I'm changing the numbering to FastEthernet1/0/1-24 system. Any help would be greatly appreciated.

  • Reorganize the table WF_JAVA_DEFERRED

    Hi allOS: OUL5x64EBS 12.1.3DB 11.2.0.3I rearrange workflow (WF) and FND tables every 1 or 2 months (rearrange tables, rebuild indexes run fnd_stat) but never include this table WF_JAVA_DEFERREDQuestion: I have to reorganize the table (no queue). the