Point Grey Gazelle Cameralink with NI-1429 Integration Question

Has anyone used a Gazelle GZL-CL-41C6M camera with an NI-1429 grabber?  I find that some camera serial commands work and some don't.  I need to change the integration time using the eraw command and it just does not work.  I also tried to update the firmware, but the updater utility can't find the cameralink serial port.  I can grab images in free-running mode, but I really need to increase the integration time programmatically.  I hate to change to a Matrox frame-grabber since our image processing software is geared towards NI hardware.  Help!

Testing in IMAQ:  I am able to see the camera in Automation Explorer, attach the camera file, create an iid file and acquire images.  In IMAQ I can free run the camera or go into bulb trigger mode.  If I enable "Additional Commands", then everything stops working.  So free-running works and bulb-mode works, but I can't change the integration time in free running mode or gain.
Using our own software:  My main problem is that when I use our own software to acquire images and talk to the camera lots of commands work, but many do not.  There are many status commands that are not in the camera file that work (temperature, voltage, firmware version etc.).  Commands that change the integration time or clock frequency read back that they are changed, but the images stay the same.  I don't understand why a command has to be in the camera file when we are just sending serial strings to the camera over the cameralink port.
Point Grey says they do not supply any software with this camera and want me to contact NI.  They have never used an NI grabber with this camera, but we always use NI hardware and there are camera files and a compatibility report for the camera (GZL-CL-41C6M) so I think all the commands in the manual ought to work.  Also I cannot update the firmware because the Point Grey updater program cannot find the cameralink serial port.
I tried using the Camera File Generator to add extra commands, but they don't work.  Either the acquisition fails with "FIFO overflow caused acquisition to halt" or I get a message like: "serial termination string not found" etc.
Sorry this is so convoluted and any advice is appreciated.

Similar Messages

  • How to get Point Grey Dragonfly firewire cameras to work with LabVIEW 2010

    We recently got a new computer.  The O.S. is Windows 7, 64-bit.  It has LabVIEW 2010 (also 64-bit) and the Vision Development Module, as well as the Vision Acquisition Driver.  We also have Point Grey Dragonfly Express cameras.  The first trial of using LabVIEW to get images from one of the cameras yielded greyscale images (they are color cameras).  We then installed the Point Grey drivers (flycapture2.1.3.4_x64).  After installing the drivers, the camera was is no longer recognized in MAX.  Does anyone have pointers or advice?  Thanks.

    It's been a bit since I've messed with camera settings. But I think LabVIEW requires the NI-IMAQdx driver and the greyscale was from not setting the bayer filter. I can't poke around my camera settings right now, so I can't double check.

  • Enterprise structure with reference to integration points

    Hi,
        Can some one send me information on  Enterprise structure with reference to integration points in SAP-IS RETAIL plz.
    Edited by: sayee on Feb 20, 2008 11:54 AM

    Hello Sayee
    In the Sales and Distribution module of SAP, there are three different perspectives for an enterprise structure. These are:
    •     Market Oriented Organization structure
    •     Internal Organization Structure
    •     Shipping Related Organization Structure
    Market Oriented Organization Structure
    Market oriented Organization structure in the Sales and Distribution module consists of sales organizations, distribution Channels and a reference division. A combination of sales organization and distribution channel forms a Distribution Chain.
    Internal Organisation Structure
    Sales Office and Sales Group represent the internal Organization in SAP. The internal Organization structure is used for performance management of sales personnel.
    Shipping Related Structure (*For Stock Transport Orders)
    Independent Organizational entities, such as shipping points, are responsible for scheduling and processing deliveries to Stores from the Distribution Centre. A delivery is always carried out by one shipping point only. The shipping point depends on the following criteria:
    •     Plant/Site (Distribution Centre)
    •     Shipping Condition
    •     Loading Group
    Thanks
    Amit Shivhare
    PS: Reward point

  • Point grey chameleon camera

    Hi,
    I'm trying to talk to a point grey chameleon USB camera with Labview using ActiveX.
    I was able to register the DLL and display the live image and change the settings (shutter, gain, etc.). When I tried to get the image data using the "GetImageData" method, Labview crashed with the error message "Exception: Access violation" (See the attached figure). I also tried to using the "SaveImage" method. It sometimes crashed, too. But it can only save 8-bit pgm files and we need to have 16-bit (12-bit actual resolution).
    I'm using Labview 2011 SP1 (32-bit) on windows 7 (64-bit). The camera model is CMLN-13S2M with the Flycapture 2.3.1.8.
    Does anyone get the camera to work properly to be able to get the image data in 16-bit?
    Thanks,
    Joseph
    Attachments:
    point grey error.png ‏29 KB

    Hi,
    I have two suggestions for you. First I would like to recommend you follow these steps to verify that there is no problem with your dll and project configuration:
    Make sure you are using the same calling conventions as the DLL.   When using C calling conventions, the caller is responsible for cleaning up the stack.  When using Standard calling conventions, the called function is responsible for cleaning up the stack.  If the caller (LabVIEW) and the called function (your DLL) don't have the same calling conventions, then they will either both take things off the stack or neither of them will.  Either situation will certainly cause LabVIEW to crash when your DLL function returns.
    Make sure that all inputs on both sides of your Call Library Function Node are wired. If the left side is not wired then the DLL will write over unallocated memory.  If the right side is not wired up,  LabVIEW will assume that your DLL does not need or use that allocated memory and will use it for something else.  Your DLL will then overwrite reserved LabVIEW memory space, causing LabVIEW to crash.
    Make sure your DLL is not overwriting LabVIEW memory.Frequently DLL functions will take allocated memory as input, write to this memory, and return it.  If not enough memory is allocated or the DLL writes more than has been allocated, the DLL will overwrite reserved LabVIEW memory space and cause LabVIEW to crash.  For example, consider the following function: double *Waveform (double *waveform, uInt32 size); The proper way to allocate the memory in this case is to initialize the array with the appropriate size prior to calling the DLL.  The image below demonstrates the proper method.   
    Make sure that LabVIEW is passing parameters to your DLL in the format that your DLL is expecting. If LabVIEW and your DLL do not agree on how a parameter is being passed (by value, reference, handle, etc.), then it is possible for your DLL to unintentionally point to some random place in memory.  This can cause faulty data at best and LabVIEW or Windows crashing at worst.
    If you built the DLL in LabVIEW and you are showing the front panel of the DLL, then there are two strict requirements to make it work.
    The Call Library Function must be set so that the DLL call is Reentrant. This is set by changing the execution category (under the Browse button) from Run in UI Thread to Reentrant.
    The calling VI (the VI from the LabVIEW development environment that is calling the LabVIEW built DLL) must not be running in the User Interface execution system. This can be checked by selecting File»VI Properties»Execution and making sure that the execution system is standard, instrument i/o, data acquisition, other 1, or other 2 (same as caller may run in the user interface system if the parent VI calling this VI is running in the user interface system).
    My second advice is to use the National Instruments Vision and Acquisition software to interface LabVIEW with you camera.
    Warm Regards,
    Miguel Fonseca
    National Instruments - Applications Engineering

  • Configuration of a Point to MultiPoint link with Cisco Aironet 1310 bridges

    Hi All,
    The previous problem of which I started another conversation here:
    http://forum.cisco.com/eforum/servlet/NetProf?page=netprof&forum=Wireless%20-%20Mobility&topic=General&CommCmd=MB%3Fcmd%3Ddisplay_location%26location%3D.1ddba023
    somehow dissapeared. It could have been a problem of interferences.
    I have another issue with other (multipoint) wireless WAN link, which I hope has a solution.
    On the central node, we have an Cisco Aironet 1310 bridge configured as root-bridge. It has a panel of four vertical polarity 17 dBi panel 90? antennas, with more than enough gain (there is a 250 mWatts 802.11 b/g amplifier, before the 4-way splitter) and excellent line of sight to three remote bridges.
    The three (03) remote bridges are also Aironet 1310 models, confidured as non-root-bridges.
    The problem we have is that it seems that when the three remote links operate concurrently the amount of lost packets is huge. When I shutdown the radio interfaces of two bridges, the remaining bridge makes an excellent link with the central node.
    It seems that some hours are more critical than others, also the links operate much worse when there is some (small) network traffic in them.
    I have read the 1310 manuals, and I can't find a sample configuration for point to multi-point links.
    Does someone knows what radio interface configuration should I need to use to establish better quality communication?
    I mean, perhaps the 1 x root - 3 x no root configuration is not recommendable for the multipoint link configuration.
    Any hints will be welcome.
    Best Regards,
    Igor Sotelo.

    Hi All,
    Thank you for the information. I configured the distance on the root bridges, but the links showed instability.
    I'm using a bi-directional amplifier. It has two pieces. According to the manuals, one is installed indoors, the other outdoors. I'm not sure if the indoors piece has the transmition module or it's only the injector.
    We could establish connection at 7 km (around 4 milles) distance from the central point, using 24 dBi antennas on the other side.
    However, we have issues with a near located point that is only 1.2 Km (around 0.8 milles) away and has a 13 dBi integrated patch antenna. The signal strenght value we get there is in the -62 to -68 dBm range, and is noticiably (5-10 dBm) lower than the strenght we get at other points of the link. And I have trouble establishing a high quality link with that point, using OFDM modulation. I tend to think that if I remove the amplifier I'm not going to reach that point at all. The EIRP on the central iste is 34 dBm / 2.5 watts, without amplifier it would be 26 dBm / 0.4 watts.
    On the opposite sites the EIRP is 33 dBm / 2 watts using CCK or 28 dBm / 0.63 watts using OFDM.
    When one looks at the central site from that point, an Motorola Canopy with passive reflector (EIRP 48 dBm or around 64 watts) can be seen. It doesn't have the same direction, but the opposite site must be large distance and could interfere with my wireless network. Attached is an amplified photo of the view. It's safe to assume that the Canopy operates in the 2.4 GHz frequency range.
    Once I connect the point at 1.2 Km, the multipoint link loses its quality, and soon the lost packets get too frequent.
    The CCK seems to be much more interfered than OFDM, I guess because of that canopies.
    Another thing I'm wondering about is if the Aironet 1310 can continuosly switch CCK-OFDM over the same point - multipoint link, without losing packets.
    What other parameters should I tweak? Is there a way to avoid interferences fromt the canopy?
    I would like to apply 100 mWatts local power using the radio with OFDM, but it seems that's not possible.
    Best Regards,
    Igor Sotelo.

  • CO with other module integration

    Hi Experts
    Kindly provide CO with other modules integration point details like CO -SD, CO-PP,CO-MM etc.,
    Thanks & Regards
    Vinod

    Hi,
    As suggested by Juan and Ruchit you can restrict the things by roles.
    It is not needed to go for a new system or new client.
    Going for a new client would again occupy more space then again you need to maintain the master data and all the other stuff. I think you should use the same client and restrict  the users with the authorization mostly we restict the users using the auth object p_orgin.
    Regards,
    Vamshi.

  • Apple Bluetooth Keyboard with MagicPad/Solar integrated?

    Is there anything like this out there yet? There's been a keyboard with solar charging integrated for ages...
    But I'm hoping the level of efficiency is such that, we're nearing the point that keyb & trackpad can now be powered by solar.
    Failing that, even just a charger built into the keyb/trackpad to charge approx. 2 (ideally) standard batteries would be fine.

    Yeah pretty annoying, looks like I'll be going with 1 of these 3 models:
    http://www.logitech.com/en-au/product/wireless-solar-keyboard-k760-for-mac?crid= 26
    http://www.logitech.com/en-au/product/bluetooth-illuminated-keyboard-k810?crid=2 6
    http://www.logitech.com/en-au/product/illuminated-keyboard-for-mac-ipad-iphone?c rid=26
    If anyone has experience with 1 or more of them, please share your findings!
    I'll probably skip multi-touch capabilities for now...
    If I also proceed with a new mouse, then I may get one with MT built-in.
    Thanks.

  • Point Grey Chameleon Exposure Parameter

    I am completely new to labview and want to control the basic parameter Exposure of my point grey Chameleon camera, but I have had no luck. I looked at this thread and the VI they presented, but I dont see any property for exposure control.
    https://forums.ni.com/t5/LabVIEW/capturing-chameleon-raw-data/td-p/2270666
    Then I read in another thread that we use the FlyCapture software to set the exposure through there and set the camera default, but this seems so roundabout for a simple parameter.
    http://ni.i.lithium.com/t5/Machine-Vision/PointGrey-Chameleon-USB-camera-not-working-in-Vision-Assis...
    Has anyone had any luck of interfacing with Chameleon so I can access the exposure? 
    Thank you!
    Attachments:
    Low-Level Grab Raw Data To Image & file.vi ‏61 KB

    Hi Richelle,
    The errors that you mentioned usually occur after the host PC's USB controller reports a USB transaction error. According to Intel's specification, a transaction error is any error that caused the host controller to think that the transfer did not complete successfully. 
    Since you've already tried the device on another computer, we know that it's not a problem with the USB controller in the computer. Do you have another USB cable you could try to see if that's what's causing the disconnection issues?
    David S.

  • Screen stuck on grey apple screen with a loading sign

    I thought i had lost my charger and i wasnt willing to fork out the money to buy one for awhile. During a recent move i found it. I charged it up but when i got to my login screen i kept trying to type my password and it wouldnt except it. After looking online i found several posts about click buttons i dont remember what exactly i clicked but it was along the lines of " option and the R key" Another screen popped up and it had several options one of which was to try to do a back up/ restore it through timemachine. I treid that and it wasnt working. I went back to the screen and saw an option that said install the lion thing. i tried that and it didnt work. I was frustrated so i decided it would be best to just shut down my computer and try again when i was less riled up. Well now it has been stuck on the grey apple screen with a loading sign under it for atleast a day now if not longer. I have no idea what to do. I'm not sure if i have apple care or not. Oh and not really sure what operating system i was using.

    Reinstalling Lion/Mountain Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • Can anyone help me figure out how to sync my ipod with my purchased music?  I have used several computer and at one point synced my ipod with a computer that only had about half of my music.  My other computers are no longer working.  Not sure how to get

    Can anyone help me figure out how to sync my ipod with my purchased music?  I have used several computer and at one point synced my ipod with a computer that only had about half of my music.  My other computers are no longer working.  Not sure how to get my purchased music back onto my ipod?

    Hi kimcinma!
    Your previous purchases are saved on iCloud even if you bought them on another computer. If you can't find them on your current computer, you might need to unhide them. Go to iTunes preferences, and click on Store Preferences. Then click the box for "show iTunes in the Cloud purchases". Then click on OK, and everything you've ever bought from iTunes on that Apple ID will show up in your library. You will need to download them from iCloud first before you can synch them to your iPod Classic. To do this, click on the little cloud with the arrow in it next to your song, and it will download to your computer. When you have the music that you want downloaded, plug in your iPod and synch away. Hope this helps!
    Sandygirl

  • I HATE my new MACBOOK PRO, it will not let me open any PDF files and I downloaded the ADOBE READER three freaking times and it keeps saying that all the files are corrupt. I would rather have my 2008 Dell at this point. what is wrong with this thing

    I HATE my new MACBOOK PRO, it will not let me open any PDF files and I downloaded the ADOBE READER three freaking times and it keeps saying that all the files are corrupt or damaged. I would rather have my 2008 Dell at this point. what is wrong with this thing

    Perhaps the PDF files are corrupted.
    Hit the command key and spacebar, a blue Spotlight in the upper right hand corner appears, now type Preview and press return on the Preview program.
    Now you can try opening the PDF's from the file menu and see what's going on.
    If they are corrupted, perhaps they are trojans from your Windows PC or gotten from a bad location online.
    Download the free ClamXav and run a scan on the possibly infected folder.

  • Is it possible to use SOA Suite 11g with JDeveloper's integrated WebLogic?

    Is it possible to use SOA Suite 11g with JDeveloper's integrated WebLogic? Or do you have to install an external WebLogic?
    Thanks for help.
    Edited by: user7722720 on 07-Dec-2011 02:04

    Hi
    By default, NO it is NOT possible to deploy any SOA Applications on Integrated Weblogic Server that comes with JDeveloper. This integrated weblogic server is very light weight basic weblogic server with single domain (only 1 AdminServer) to deploy a standard J2EE, ADF Applications like EJBs, WebApps, WebServices, ADF Apps etc. BUT SOA (having BPEL, BPMs etc ) cannot be deployed.
    There is an option to upgrade this integrated weblogic server and install SOA on top of this. Like download soa installer that matches with your JDeveloper version and install soa on top of this weblogic. BUT I strongly do not recommend this, because you will not be able to upgrade iin future to the latest versions.
    Yes, its always better to install the standalone Weblogic Server that matches with your JDeveloper version. Then install SOA on top of this Weblogic Server. Then create RCU Schemas in any Oracle Database. Run config wizard and create a SOA Domain. Now integrate this in your JDeveloper to deploy any soa applications.
    Make sure that JDeveloper, Weblogic Server, SOA Software, RCU all these versions should match and they should be same.
    Thanks
    Ravi Jegga

  • Is backlit keyboard of 13-inch Macbook Pro with Retina display integrated English and Russian ?

    Is backlit keyboard of 13-inch Macbook Pro with Retina display integrated English and Russian ? I mean Russian is integrated on keyboard not by using stickers or installing font

    cobebc wrote:
    Is backlit keyboard of 13-inch Macbook Pro with Retina display integrated English and Russian ? I mean Russian is integrated on keyboard not by using stickers or installing font
    Apple does make these, but they are not sold everywhere.  Where are you located? 
    Nobody in these forums represents Apple or any store, so to find out whether you can buy a particular product you will need to contact stores directly yourself.  In the US you can sometimes get unusual keyboards by talking to an apple retail store and asking for a special order.
    http://www.apple.com/retail/

  • My computer suddenly decides not to work and turns on but does not go past the grey apple screen with the loading wheel.. it will not go to my desktop. What should i do?

    can somebody please help me fix this issue, i have been sitting at my computer all last night and this morning trying to figure it out. It could be the hardrive or anything really i just need to get it working. Alot of important things that need to be done using this computer and i am freaking out.
    My computer suddenly decides not to work and turns on but does not go past the grey apple screen with the loading wheel.. it will not go to my desktop. What should i do?

    Put your install DVD into the optical drive (CD/DVD drive) and reboot. Be sure to either use the disc that came with your Mac, or, if you installed a later Mac OS X version from disc, use the newer disc. As soon as you hear the boot chime, hold down the "c" key on your keyboard (or the Option Key until the Install Disk shows up) until the apple shows up. That will force your MacBook to boot from the install DVD in the optical drive.
    Or if you are running 10.7 Lion, boot from the recovery partition (Command +R on boot) and use Disk Utility to repair your OS 10.7 partition.
    When it does start up, you'll see a panel asking you to choose your language. Choose your language and press the Return key on your keyboard once. It will then present you with an Installation window. Completely ignore this window and click on Utilities in the top menu and scroll down to Disk Utility and click it. When it comes up is your Hard Drive in the list on the left?
    If it is, then click on the Mac OS partition of your hard drive in the left hand list. Then select the First Aid Tab and run Repair Disk. The Repair Disk button won't be available until you've clicked on the Mac OS partition on your hard drive. If that repairs any problems run it again until the green OK appears and then run Repair Permissions. After repairing use Startup Disk from the same menu to choose your hard drive for restarting from your hard drive.
    If your hard drive isn’t recognized in Disk Utility then your hard drive is probably dead.

  • Numbers point to a cell with different formatting to create conditional format

    Hi all, not sure if this has been brought up but my search efforts haven't found anything. I know conditional formatting is not supported in IOS numbers but I saw a buddy do a little trick a while ago and I've been trying to replicate it. On his iPad, he created a numbers spreadsheet that had a logic function (=if). And if that function was true it pointed to another cell with different formatting. The result was, the cell would become the same format as the cell it was pointing too. This created the effect of a conditional format in a sense. I can get this to work with limited effect, only if the cell is a "text" cell and not a formula. As well the background colour doesn't get picked up, only the format of the cell text itself. I'm trying to get in touch with him for help but in the mean time does anyone have any experience in this kind of method?
    Cheers

    As an example:
    If A > B, then A-B, otherwise make it equal this other cell (D1 for example)
    {=if(a1>b1,a1-b1,d1)}
    And in that d1 cell I would make another formula that also does the same subtraction (a1-b1) however knowing it will be a negative number this time, I paint the cell bright red and hopefully the original cell will then look the same since it is now equal to this one.
    Unfortunately it looks like this wont work. The closest thing to doing this trick I have found is pointing to a cell formatted as text, such as a blank cell. Then the original cell takes on the formatting characteristics of the text cell.  The problem is the text cell is useless since it can't do any sort of math. I can't even set the cell to simply equal another one and format it as text only. So far it looks like the only conditional type of trickery I can do is make the numbers disappear by pointing to a blank text cell.
    I hope that helps describe it a little better.

Maybe you are looking for

  • My rMBP won't fetch emails with the mail app on it's own?

    I have a hotmail and yahoo account synced with the mail app but anytime i get an email, i have to manually fetch to be able to see them. All other notifications such as facebook and twitter fetch automatically and on sync time-wise. Does anyone know

  • Save As dialog

    Oracle SQL Developer version 1.1.2.25 BUILD MAIN-25.79 Running under WinXP Issue description: When performing a Save as the file and folder list is not refreshed, one must close and reopen this dialog to see changes.

  • Problem in installing JMF

    I tried to install the latest version of JMF but it says an error that it cannot be executable. I have j2sdk1.4.2_01 with me and my soundcard is properly installed. Please help me out with my problem.

  • Someone using isync on tiger with Nokia 6600 successfully?

    Hi all Any one of you using isync on tiger with Nokia 6600 successfully? If yes please tell us what firmware is on the Nokia. Because I have the following problem: I have 10.3.9 on my G5 and I syncronize my (old) Nokia 6600 (V 3.42.1) with isync, wit

  • Running batch files thraugh java by passing parameters

    Hi I want to run a batch file by passing some parameters. Eg: copy.bat "D:\live\hoe.txt" "D:\test" while doing this from command prompt its working and i have written some java code for running this batch file. String live="D:\\live\\how.txt"; String