Question about running from two cameras at the same time with MAX

Hello

I have two cameras attached to NI PCIe-1430 frame grabber card (Atmel Aviiva M2 CL and Fairchild 2 K LS) IRLS. It's ok when I run two cameras individually, but I can't run them at the same time.

This is the step that simultaneously run two device:

1. open MAX, select the port and start image acquisition by pressing the 'Grab' button, I can see the image at this point.

2. open another MAX session, select the other port and press "enter". I got following error:

"Error 0xBFF60021".

Unable to perform request; acquisition in progress'

Sometimes, I got this error too:

"Error 0xBFF60022".

A timeout error occurred while you wait for the specified event. If you expect a picture, check the video data is acquired in the period. If in the meantime the signal, check that the assertion of signal has occurred within the period. »

I already give enough timeout Fame to the tab settings of Acquisition.

The MAX version used is 4.5.

You have an idea on that? Makes simultaneous Imaging MAX support?

Thank you

-polarfox

Thanks for the quick response Bruce.

Tags: NI Hardware

Similar Questions

  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • Creating records from two Tables at the same time...

    I would be very grateful if someone could help with the following query.

    I have two Tables, Tbl1 and Tbl2. Tbl1 has the following columns: -.

    Tbl1_Unique_ID, Description

    Tbl1_Unique_ID is of type ' * number *' and ' * PK * ', Description is of type' * Varchar2 *'.

    Tbl2 has the following columns: -.

    Tbl2_Unique_ID, Description, Tbl1_Unique_ID

    Tbl2_Unique_ID is of type ' * number *' and is the ' * PK * ', Description is of type' * Varchar2 *' and Tbl1_Unique_ID is of type ' * number *', is a ' * foreign key *' and is the ' * primary key *' from Tbl1.

    While I can create a page to display and create folders in Tbl1, I'm not course coding required to view and create records Tbl1 and Tbl2 simultaneously, as well as regarding the two together at the same time.

    I know that it involves one ' * INSERT *' statement, but I have problems the correct SQL query.

    Can anyone provide any assistance will be appreciated.

    Have you tried to create a form master / detail page? Because it seems that is what you need...

  • Illustrator Question about use on 2 computers at the same time

    I have a monthly CC for my daughter.  She uses Illustrator.

    I have Illustrator CS4 on my PC.  If I had to download cc on my PC and upgrade to the latest version of Illustrator, this is allowed?
    Do you have the right to have Illustrator on 2 computers with one subscription?   If you do, can you both use Illustrator at the same time?  He will work on two computers?

    Thanks for the help!

    Cloud license allows 2 activations http://www.adobe.com/legal/licenses-terms.html

    -Install on a 2nd computer http://forums.adobe.com/thread/1452292?tstart=0

    -Windows or Mac has no importance... 2 on the same operating system or 1 on each

    -Two activations may NOT be used at the same time (noted in the link above of the license)

  • How to take snapshots of two usb camera at the same time

    Hello

    I have a project where I have to take still photos of two usb camera at the same time repeatedly and save the in a particular direcltory. I am received using a camera by using "Camera Grab vi", but I can't make it work with 2 cameras, I use the flat sequence and 2 "Camerra Grab vi: with particular camera in a sequence, but each time when I run the program I get only pic of a camera, its seems a camera dominates the other.»

    Please is it possible to use the two camera simultaneously. Attached are the snapshot of my vi.

    Thank you

    Ankit G

    Looks like you are using the same reference at the same time grabbing the camera. The two camera snaps happen but the second camera clamp is written on the first so it seems alone is slam. Try to run the VI executiong highlighted arbitrary mode (select icon icons four bulb to the right of the button run on the schema). This will allow you to see the data stream. In order to get both of these Snap you'll need separate references. You can try to watch one of our examples in the example Finder OR give you some direction (LabVIEW > help > find examples > Browse tab > Input and Output material > IMAQdx > high level > Snap.vi). You can break the two cameras at the same time if you just copy this code and double of the code.
    (Note: If you change the examples, always save as copy in another location so that you do not save on the packed example)

  • Run different applications in Creative Suites on two computers at the same time.

    I have a backlog of mini tape DV from my vacation for 10 years.  The rear reason is because slow computers have made a personal production until the very slow DVD creation.  I've recently updated to 4-core i7 with unique HDs and on the point of buying a custom built 6 hearts i7 with SSD and RAID HDs.  I understand that I can install Creative Suite Production Premium 5.5 on two computers.  One facility is already on the coreI-4.   I intend to install the second installation on the 6-core.  I would use the 6-core for production, while the 4 - core is the capture of DV cassettes.

    If I had bought a copy of an application separate and installed on separate computers, I'd be able to run them at the same time.  Is there a way I can run two computers at the same time with Creative Suite to accelerate personal production for example can I run separate from the Creative Suite applications, I want to use separate programs, on two computers at the same time, as long as these requests are not the same?

    You can run the same or different adobe products to the same or different times on the same or different computers (except that you can not run the same program more than once on the same computer at the same time).

  • With Creative Cloud, can run us applications on two computers at the same time?

    Hello

    (First Question):

    I have two diffrant PC with the same OS (Windows 7),

    can I use any application on the two PCs at the same time with my plan full creative cloud for individuals - annual.

    ((Deuxième Question):

    If the answer to my question above is yes then my second question is that I use my laptop at home, except office hours so it is possible

    to install creative cloud on my third machine (Windows - computer laptop at home).

    Example: Can I use Creative cloud when I am connected at home and not in the desktop.

    First question: Yes

    See Q3 in respect of development underway in the FAQ

    http://www.Adobe.com/products/creativecloud/FAQ.html

    Second question: not easily.

    Your cloud membership entitles you to 2 simultaneous activations only max.

    To use it on the 3rd computer, you should disable first on the desktop computer. Then re-enable the next day.

  • MAX cannot find two usb cameras at the same time

    Hello

    I want to use two cameras usb (Thorlabs DCC 1545 M) in NOR-IMAQdx in Labview, but it cannot find a single camera (the one plugged earlier), and also a single camera is shown in MAX. Both cameras working in the manufacturer's software, and if I unplug the 1 unit, the 2nd will be displayed in MAX after a refresh.

    I found that one camera is supported for each USB hub in Labview, and all USB ports in this computer correspond to a same hub online. I don't know if this is causing the problem.

    In fact, I need to take the picture in both cameras at the same time, a switch programmed between the two cameras will work for me.

    Any suggestion and comment will be appreciated.

    Hello Hosni,

    According to this link, you can acquire from multiple USB cameras simultaneously.  The limitation is on the manufacturer and how they interface with the bus of DirectShow.  When you use two cameras of the same make and model, it sometimes happens that not enough information is not IMAQdx to distinguish between the two cameras.  When you switch to MAX cameras, they come as different cameras, or they appear actually virtually the same?

    Since you said switching between them might work, I found an example that does just that.  Just make sure you give a name to each camera single camera.  I hope this will be useful for you.

    In addition, there is a bit of discussion on this topic on the forum of discussion already.  Check out these related threads, or use the search box to search for more.  There is much information available!

    http://forums.NI.com/T5/LabVIEW/multiple-USB-cameras-in-LabVIEW/m-p/833517

    http://forums.NI.com/T5/machine-vision/two-USB-camera-identification/m-p/2193960

    http://forums.NI.com/T5/machine-vision/synchronized-capture-for-multiple-USB-cameras/TD-p/1879647

    http://forums.NI.com/T5/LabVIEW/multiple-USB-camera-image-acquisition-using-vision-acquisition/TD-p/...

  • Running two Apps on two computers at the same time

    I know the ability to install on two computers CC and I saw the restriction of not being able to run applications on two different computers at the same time.

    My question is, does that mean that all the two apps at the same time or cannot run the same application on two computers at the same time?

    For example, my daughter can use Flash while I use Illustrator on the same CC account?

    For example, my daughter can use Flash while I use Illustrator on the same CC account?

    # The license is for you and you alone. It is not a shared license.

    Your daughter must have its own Adobe ID and its own subscription to use the software.

  • Two users on the same PC. How to run the application even for two users at the same time?

    Hello friends,

    I have two user accounts on my pc. Is it possible to run the same application (for example: DEFRAG or disc cleanup utlities) for two users at the same time? I mean, these utlilities work by all of the computer or user account? That would mean the same application to perform for a single user in the background and foreground to the user, or I'm totally lost in space?

    Thank you for your comments

    You should run Disk Cleanup in each user account. Do not try to shut it down or change user when defragmentation; system files may be damaged. You must stop the defragmentation, log off, restart the defragmentation and don't really no point for it. MS - MVP - Elephant Boy computers - don't panic!

  • I can't have multiple files open at the same time! I need to compare the content from one to the other. How to display two files at the same time?

    I can't have multiple files open at the same time! I need to compare the content from one to the other. How to display two files at the same time?

    Hi sindres79946597,

    Open Acrobat Reader DC, navigate to the Edit-> Preferences-> General-> uncheck "Open Documents in the new tab in the same window.

    Now, reboot your system, when you open multiple PDFs that all will open in a new window so that you can easily compare.

    Kind regards
    Nicos

  • LR and PS will not update 'Download error' 49 customer service contact? anyone had this problem and how to solve? was running windows 8.1 and now running windows 10 but had the same problem with two BONES

    LR and PS will not update 'Download error' 49 customer service contact? anyone had this problem and how to solve? was running windows 8.1 and now running windows 10 but had the same problem with two BONES

    Check your hosts file.  to help with this and more:

    Log, activation, or connection errors. CS5.5 and later, Acrobat DC

  • Two applications at the same time on the M200?

    On the Amazon website (and I'm sure elsewhere), it says on the M200:
    "With the optional Tablet Multi Dock station, you can connect an external keyboard and monitor allowing you to run different applications on screens separated at the same time."
    I've been reading my M200 and the multidock and it doesn't say how to do this. It seems strange when it's supposed to be something special you can do with the M200, he's not telling how you do! Could someone enlighten me please?
    Thank you very much

    Hello

    In my view, this means that the option of extended desktop.
    If the external monitor is plugged so that you can use this option to enlarge the display option. This option, you can activate with the key FN + F5 combination. If this option is enabled for example, you can open two widows of IE and one from this window, you can switch to the external display. In this case, you can use two applications at the same time

    Good bye

  • 15 n series Pavilion: Pavilion 15 computer n097sa laptop. L and R audio that passes through the two speakers at the same time.

    Hi, so basically, I just upgraded to this laptop 15 n097sa (new to me) of my old sucks, and it's so much better.
    Only, I just noticed that when his left or right is out at the same time the two speakers. I noticed you access with your headphones. the left certainly comes out the left a little more and the right thus respectively, but they always come out of two speakers much.
    To clarify that, the only left channel is coming from the two speakers at the same time, instead of just the left speaker. And similarly for the right channel.
    I only did a real test on youtube videos of stereo test, even I tested it on my old acer before, that came out of the correct speakers.
    I have a sound dts, no matter who is and it could be reduced to just change the settings, but I don't think that's it.
    Does anyone else have or had this problem too?
    I know I'm a sucker for pc, but please go steady on me, your.
    Win pro 8.1.

    will you please and thank you very much indeed, couch.

    Malygris1 wrote:

    Hi there @SofaQueue

    Welcome to the Forums of HP Support! It's a good place to find the help you need, so many other users, the HP experts and other members of the support staff.

    I understand that you are having problems with the audio balance on your laptop, and I am happy to help you with this. First of all, I would say reinstall the audio driver.

    ETC.

    Let me know if you still have problems and view the details of what happens.

    I will mark it as resolved now. Very useful, thanks.
    What I found was the following: I have really no problem at all, it was the parameters of the audio DTS after all.
    Simply turn off the audio improvements and testing showed once again that's all it was.

    Thanks again though, nice to see people are willing to help so much!

    Edit: Is PS it OK to mark my answer as a solution? I don't care if or whatnot, it just is the right answer and makes sense. I'll do it if he lets me.

  • How can I use Adobe and a camera at the same time?

    I am a musician and I put to read sheet music and record with the camera to the IPad. But whenever I left the window of the camera and switch to Adobe agani, the camera stop recording.

    I can't save IM reading the notes of music at Adobe.

    I use Air from the IPad.

    Nobody helps me?

    Thank you.

    Hi Edusax,

    It seems to be the limitation of the device because it doesn't have the split screen function to use two applications at the same time.

    You will need two devices else you can print the PDF to read sheet music.

    Kind regards

    Nicos

Maybe you are looking for

  • Sometimes I want to just close ONLY a window, but Firefox closes all THE TABS, and I don't want to!

    Sometimes, I open multiple windows, especially from my box from Comcast. When I'm through with this window, I will conclude, but leave others more open. FIrefox won't do this anymore when I close the 1 window, Firefox send me a message stating that i

  • Satellite M70: shutdown procedure sometimes does not work

    Just have a problem with my newly bougt garage 70 M Satellite (1.7, 512, 40, combo, XP Home Edition). Especially when I stopped the laptop, it stucks and window gives the message 'PadTouch_FingerWnd program is not responding... ". "So now if I click

  • What HARD drive can I install the Satellite Pro 2100?

    I installed a second hand Toshiba 40 GB HDD in my Pro 2100, but he fails to recognize in the BIOS. Any ideas?

  • Lenovo R60 do not turn on with battery

    Hello Sir, I have laptop of lenovo thinkpad R60. A few days back, I used to get error message saying stuck key 44 when I turn on the laptop and when I press ESC it used at startup. After a few days my laptop does not run with the battery. But when I

  • ERRO 00000057 code

    When you try to install the 3.5 framework serv. Pak 1 and family updated of the net framework 3.5 (kb951847) x 86 on my windows vista I get erro 00000057, registry cleaner or booster not help.