How receive image from camera with PCI-bus

Hello all
Please help
me.
I have LV 7.1.1.
I wont
watch two and more images from cameras at the same time.
I have capture
card (PCI-bus) with 4 video-input.
What kind
of data must be transfered from this capture card  to LV?
 With respect
Aleksandr.

Hello Aleksandr
please provide more information, what type of video card do you have?
Have you configure the card so you can watch an image with MAX?
I suppose the card has the ability to capture more than one image at a time is that true?, however most of the cards that I know of, have several inputs but you can only display one image at a time, you can swith between them and capture and image from another input, to capture more than one unit at a time you would need to open/close sessions with the instrument/card such that you are switching from one input to another
vicente

Similar Messages

  • Average images from camera with IMAQdx

    Hi,
    I need to average acquisition images from a camera and than subtract the average from a background image acquisition.
    Althought I'm using an ethernet connection the program is REALLY slow.
    I'm new with Labview so any suggestion is very wellcome...Ihave attached the program
    Solved!
    Go to Solution.
    Attachments:
    interface2.vi ‏157 KB

    This isn't my best work, but take a look a this.  The same code acquires both images, you just choose which image control stores the averaged image.  the Analyze button then processes whatever is in the two image controls (Reference and Absolute).
    Your problem is that you are constantly initializing each time you take an image.  You only have to do it once.
    Randall Pursley
    Attachments:
    Average Images.vi ‏87 KB

  • Safari upload image from camera with iOS 8.1.2

    Hello,
    I'm having trouble try to upload a picture while using Safari on iphone 4s that does not exist in my photo library yet and trying to create one by taking a picture with my camera.
    it doesn't have a problem selecting an existing photo from my library.
    i have also tried to create a simple form with an only input file button and nothing else to verify that its not some script or anything else that is causing the problem
    Steps to reproduce the problem:
    1. open Safari on iphone 4s with iOS 8.1.2
    2. went to www.baldpixel.com/_upload.php
    3. clicked to select a new picture (i.e. not selecting an existing from library)
    4. once taken the picture and pressed on Use Photo safari reloads the form and prompts the message :  A problem occurred with this page so it was reloaded.
    5. closed Safari and tried to open it again, 1 in 3 times i get the message above and the rest of times page reloads.
    same problem has appeared in iphone 6 with the latest version iOS 8.1.2

    Same exact problem as @ropox only I am using iOS v 8.1, iPhone 6.
    I have reports coming in from other testers - they are experiencing the same issue with their iPhones.
    Scenario:
    We have a simple web form with a file upload. in the past, users were able to take a photo with their iphone and upload it via the form upload (simple FILE input). This worked fine in the past, the only difference is the iPhone iOS upgrade to 8.x
    Interesting Update:
    When I connect my iPhone to my mac via a cable and have error reporting going from the iPhone to the Mac's Safari console - hoping to capture some kind of error in the console to figure this out - it works fine! The upload and everything works as expected. As soon as I disconnect the cable and try it again, no dice. I get the web page reloaded with the error: A problem occurred with this page so it was reloaded.

  • Any ideas of how to receive images from a wireless camera (2.4 ghz) to my ipad rather than the handheld DVR supplied?

    Any ideas of how to receive images from a wireless camera (2.4 ghz) to my ipad rather than the handheld DVR supplied?

    some of those often have webserver so one just navigate to it using a browser

  • How do you Automatically Copy Images From Camera?

    I would like to create an AppleScript that will run when I plug in my digital camera. Here is what I cannot figure out.
    How to make it run when the camera is plugged in.
    How tow to copy images from camera to a designated folder.
    Thanks!

    You can do all you requested - without 'AppleScript'.
    01. Connect your camera launch 'Image Capture' ('/Applications/' folder - if it does not automatically launch.
    02. Select the 'Image Capture, Preferences...' menu item.
    03. Click on the 'General' tab.
    04. From the 'Camera:' 'When a camera is connected, open:' pop up menu - select the 'Image Capture.app' menu item.
    05. From the 'Devices' menu select your camera from the menu items list. A window will appear with the title of your camera.
    06. From the 'Download To:' pop up menu select where to save the camera's photographs. You can select any folder anywhere on your hard disk drive(s).
    07. Click the 'Options...' button, and from the drop down sheet click on the 'Connection Options' 'Automatically download all items' check box - to add a check mark. There are other options you may have be interested in.
    08. Click on the 'OK' button.
    09. If you want to download the photographs now - click on the window's 'Download All' button. Or, to test the above setting changes - quit 'Image Capture' and disconnect your camera. Then reconnect the camera - and watch the above setting changes take effect.
    Note:
    The above automatic action can also happen if the storage device of the camera were inserted into a USB digital camera card reader. So long as apply the Steps above, and you select the USB digital camera card reader from the 'Devices' menu's menu item list in Step 05 above.
    'Image Capture' is not scriptable; but, may be control-able via 'tell application "System Events" to tell process "Image Capture" ....
    When a camera is connect to the Mac, the storage card of the camera is mounted onto the 'Desktop' and also listed, as an alias, in the (invisible) '/Volumes/' folder.
    Now that you know the name of the storage card ... you can create a 'Folder Action Script' (an example is presented below) and save it into the '/Library/Script/Folder Action Scripts/' folder,
    Open the '/Volumes./' folder (in 'Finder' via 'Go, Go to Folder' - enter '/Volumes/').
    Perform a right button click ('<control> - click, for single button users) on the 'Volumes' folder's window, and select 'Enable Folder Actions' (if not already).
    Rpeat the right button click (<control> click) and select 'Attach a Folder Action...' - selecting your script ('Volumes_FAS.scpt' as shown below).
    Below is a 'Folder Action Script' example - where you will have to substitute 'NO NAME' with the name of your digital camera's storage card's name.
    -- --- Save code as a script with the name 'Volumes_FAS.scpt' --- --
    on adding folder items to this_folder after receiving added_items
    set myStorageCard to "NO NAME" -- The name of my 1 GB stroage card. The name of your card may differ.
    repeat with i in added_items
    tell application "Finder" to set tName to (name of i) as string -- Obtain name of mounted storage card.
    if (tName is equal to myStorageCard) then my handle_card(i) -- If my storage card, continue processing.
    end repeat
    end adding folder items to
    on handlecard(localVolume)
    set folder_Path to ((path to desktop folder from user domain) as string) -- Path to 'Desktop' folder.
    set download_Folder to "NO_NAME Photographs" -- Name of folder to store storage card's items (files and folders).
    -- create download_Folder, if it does not exists.
    tell application "Finder" to if (not (exists folder (folder_Path & download_Folder))) then make new folder at (folder_Path as alias) with properties {name:download_Folder}
    -- Duplicate all the items (files and folders) of the storage device to the '~/Desktop/NO_NAME Photographs' folder.
    tell application "Finder" to duplicate items of local_Volume to (folder_Path & download_Folder) as alias
    end handle_card
    -- --- End of code --- --
    Review 'Finder's dictionary (in 'Script Editor') for the various ways to incorporate 'duplicate ...'.
      Mac OS X (10.4.4)  

  • HT4101 I discovered a fatal flaw in the iPad procedure for downloading images from camera to iPad: after selecting the images to be downloaded, an accidental touch of the "delete" button, wipes all selected images from the camera, with no warning?

    After downloading some 60 images from camera to iPad, I was "scrolling" down to select the last images, and inadvertently touched the "Delete" button that appears at the top right of the screen, when the "Select" option is chosen. I did not notice the warning "Delete 60 Images?", and continued scrolling down, when my finger touched the warning message. All my precious images were instantly deleted from the camera The sensitive touch screen feature makes this a real problem. Apple should "fix" this unacceptable feature, surely! I suggest that the images on the camera memory card should not be able to be deleted from the iPad, and this shpuld require to be done using the camera controls only. Similarly, the "Delete" or "Keep" options that appear after importing a selection from the camera, should NOT allow the images on rthe camera to be deleted, but only the imported (downloaded) images on the iPad. This unnecessary option could easily delete precious images from the camera!
    Apple should remove the option to delete images from the camera, and the iPad touch screen commands should olny delete images on the iPad. (Alternatively, the "delete option should be on a separatly accessed "page".)
    Surely enough users of the "Lightning to USB Camera Adapter" will agree with the above?

    No, I don't agree. Whenever you connect a camera to a computer you are given the opportunity to delete the photos on the camera after downloading in precisely the same way the iPad does this. The fact that you touched Delete and then ignored the Warning doesn't change anything.
    I've loaded thousands of photos on my IPad and never have had that problem.
    Don't blame a moment of carelessness on your device.
    If you want to make such a suggestion to Apple use http://apple.com/feedback

  • How do i delete images from camera after importing

    how do i delete images from camera, ipad, iphone after importing the files into aperture3?

    Image capture will allow you to delete from the device after import, but I believe it is by design that Aperture does not do this as it is recommended (in the case of a camera) to use a device's own delete function rather than a 3rd party like Aperture. This also allows time for a proper backup before everything is erased from the device?

  • How can I download images from website with Automator?

    Hi!
    I want to ask how can I download images from website with Automator like here http://www.youtube.com/watch?v=hQm7Xr9jY0w&t=85m15s (in 1:25:15).
    I want to download these images to my downloads folder. Some things have changed and I can't find exact options as then. When I am trying to make it it shows "The action "Download URLs" was not supplied with the required data."
    I am using 2012 late iMac with Mac OSX 9.2 (Mavericks).

    There are two apps that I know of - and I would also swear that they come from the same developer, although they've different names. Both have free trials and both cost $40 (but both do 'other' video conversion as well).
    One is WonderShare - I bought this one and it works very well for downloading YouTube videos as well as converting just about any file format you can think of.
    The other is iSkysoft Video Converter (just noticed that it's now $36).
    I tried them both and finally decided on WonderShare. Give them both a trial run and decide if you like either one enough to buy it. I don't know of any 'free' software that will allow you to download and convert YouTube videos, but perhaps someone else will come along and know of something...
    Good luck,
    Clinton

  • Raytheon 2000b camera with PCI-1422

    I am trying to use a Raytheon 2000b camera with PCI-1422. I have downloaded the attached doc and icd file from NI.
    1. As far as I now there is no proper NI cable for my camera, but the pinout is described in the doc file. I would like to purchase a cable, and solder a connector on it for my camera. Which cable should I choose, if I need the following pins on the PCI-1422 side: 1-32, 41-46, 49-50, 93-94, 99-100?
    2. The icd file supports image acquisition only, attribute settings via serial line are not contained. I would like to add this feature, but I could not find any description about the icd files. Where can I find a document that would help me?
    Attachments:
    Raytheon_2000b_Pinout.doc ‏74 KB
    Raytheon_2000b.icd ‏3 KB

    My problem is solved now.
    But I don't know what is the exact solution.
    The camera & cable provider and me tried as below.
    try-1. connecting tm-1320-15 and 1422 with serial-enabled cable
    try-2. changing 'OnBoardClock(20)' to 'OnBoardClock(25)'
    With only 'try-1 ', it failed. but additional 'try-2' we could snap and grab the camera image.
    And now, I can get images without serial-enabled cable, regardless of OnBoardClock speed.
    I think the camera has been initialized with max's parameters(same as icd file) when the serial commnunication had enabled for the first time.
    (I'll verify this assumption with new tm-1320-15 later.)
    Thank you.
    Tip : If tm-1320-15 and 1422 makes error because of parameter mismatching, reset the tm-1320-15's power.

  • Capturing images from camera and uploading to sharepoint library automatically.

    Hello Everyone,
    My requirement is to capturing images from camera and uploading to sharepoint library automatically. No manual uploading will take place.
    Please suggest me.
    Thanks,
    Rajesh

    Hi,
    From your description, my understanding is that you want to capturing images from camera and uploading to sharepoint library automatically automatically upload images to SharePoint library.
    You will save images in your local computer after capturing visitors’ image. You could develop a custom timer job to periodically get pictures from the local folder in your computer. Please refer to this article:
    Create and Deploy Custom Timer Job Definition in SharePoint Programatically
    http://www.codeproject.com/Tips/634208/Create-and-Deploy-Custom-Timer-Job-Definition-in-S
    you could upload pictures to your SharePoint from the folder with C# code, please refer to this article:
    How to: Upload a File to a SharePoint Site from a Local Folder
    https://msdn.microsoft.com/en-us/library/office/ms454491%28v=office.14%29.aspx?f=255&MSPPError=-2147217396
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • BizTalk 2013 SB-Messaging Adapter: Unable to receive messages from a Azure service bus Subscription

    Hi,
    I am trying to receive messages from a Azure service bus subscription using SB-Messaging Adapter in BizTalk Server 2013 but getting the following error.
    "The token provider was unable to provide a security token while accessing 'https://overcasb-sb.accesscontrol.windows.net/WRAPv0.9/'.
    Error Code: 407 Proxy Authentication Required. The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied. (12209)
    It seems the error is related with Service Bus Authentication and Authorization with the Access Control Service. Can anybody help me out if I am missing something here? 
    Also for consuming the AWSB (namespace, topic name, subscription name, Issuer name, Issuer Key) I have referred the following link
    http://soa-thoughts.blogspot.in/2013/02/biztalk-server-2013-new-adapters-series.html
    Thanks!
    Regards,
    Gautam
    gautam

    Hi,
    When I am trying to receive the same messages from a Azure service bus subscription using .net (C#) client,
    BusSubscriberbusSubscriber =
    newBusSubscriber("TestTopic2",
    "Endpoint=sb://overcasb.servicebus.windows.net/;SharedSecretIssuer=owner;SharedSecretValue=wqYlT4yHZimeUZacH+1V1hj/ZrKu7zK9ELaaLYDxqjc=",
    "AssetMovement",
    "AssetMovement");
    I am getting the same error here also.
    "The token provider was unable to provide a security token while accessing 'https://overcasb-sb.accesscontrol.windows.net/WRAPv0.9/'.
    Error Code: 407 Proxy Authentication Required. The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied. (12209)
    By setting  <defaultProxy useDefaultCredentials="true" /> in appconfig, I got rid of the above error. And now its working fine with .net(C#) client.
    <configuration>
      <system.net>
        <defaultProxy useDefaultCredentials="true" />
      </system.net>
    </configuration>
    The same setting I tried in BTSNTSvc.exe config file and ofcourse restarted the host instance but still getting the same error. Any help?
    gautam

  • Camera software not opening to transfer images from camera to computer. What to do?

    My PowerShot 720is software ZoomBrowser EX not opening on computer. No images load and I don't have option to click on "connect to camera" so I can transfer images from camera to computer. Message says "Zb Module has stopped working. Windows is looking for a solution to this problem." Anyone have this happen and know what to do?
    Thank you!

    Hi BLG,
    If you haven't already done so, please update your software for Windows 7.  Here's how.
    Just click here to access the software updates for your camera.  Once there, just enter your operating system, then the version of the operating system.  Now click on "Software" to show the software updates.
    Click on "ZoomBrowser EX 6.9.0a Updater".  Installation instructions are on the next page.  Also, please download "CameraWindow "DC 8.8 for Windows" to your desktop.
    After accepting the required disclaimer, please download the program update to your desktop.
    After downloading all the software you choose to install, please install ZoomBrowser last. This will allow it to link to the other Canon software on your computer.
    Since you've installed an older version of software, you may now double-click on the program update to install it.  If not, just put the CD-ROM in your computer's optical drive and stop any installation program that starts.
    If you've already updated the software for Windows 7, please contact us for assistance.  Click here for contact options.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Grabing images from camera & Apply OCR To that image

    Hi,
    I m developing a sample application on OCR. At last visit i m posting the same question.But no one can answer me.
    Here i Create a Vi for grabbing images from camera. The Images are grab & save to the desired folder.But the OCR is not working on that snap image.
    I m  modified some Sample NI VI's for capturing the images & for OCR.
    I m new for labview. I cant understand where is the problem in the VI.
    i also create a character set file for reading the characters using OCR Train
    so please help me to find the solution.
    Attachments:
    Character reading.vi ‏91 KB

    HI.
    Let me give some suggestions regarding your code, (See pictures), and attached an example that you could serve.
    Regards.
    Jonathan Cruz
    CHALLENGER
    K U D O S __ B I E N V E N I D O S
    Attachments:
    Camara OCR.vi ‏42 KB
    11.JPG ‏77 KB
    22.JPG ‏17 KB

  • HT5361 IN OS 10 where can one find the folder for images that came with email?

    IN OS 10 where can one find the folder for images that came with email?
    I wish to delete the leftover image files to free up drive headroom.

    I checked in this place, no dice!
    Home/Library/Mail Downloads, or
    the system "Downloads" folder

  • Capture images from Camera directly at high resolution

    Hello Users,
    I want to capture images from Camera directly at high
    resolution. The problem is that although I am able to capture
    images from a Video Object, but the images are small because the
    Video size is only 160x120. So if I am able to capture directly
    from Camera, I am sure to get a higher resolution images at which
    the camera is capturing.
    Any help in this matter will be of great help

    Hello Users,
    I want to capture images from Camera directly at high
    resolution. The problem is that although I am able to capture
    images from a Video Object, but the images are small because the
    Video size is only 160x120. So if I am able to capture directly
    from Camera, I am sure to get a higher resolution images at which
    the camera is capturing.
    Any help in this matter will be of great help

Maybe you are looking for