Can i take photo from wireless camera using labview?

my project is fire fighting robot it detect fire using camera so can i use wireless camera when using labview or not?and if yes, how can i do that?

Hi khaledyr,
yes it's possible, but the effort to realize it depends on the camera model. Do you already know the camera type you will use for it?
Mike

Similar Messages

  • Can you take photos on digital camera and see them appear on the ipad using the camera connector

    Can you take photos on digital camera and see them appear on the ipad - i have a canon 400d and the new ipad.......

    The camera connection kit accepts only SD camera memory cards.
    Another way. You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
     Cheers, Tom

  • I can't download photos from my camera. instead of a camera listed under devices I have a new icon named wizard.  help?

    I can't download photos from my camera.  My camera used to show up under 'devices' when I connected to my Mac.  Today it shows an icon called wizard instead.  When I turn on the camera to start the download, empty picture frames appear, but no photos to import.  Can anyone advise?  Thank you!

    Try to import from your camera with Image Capture instead of iPhoto. Does that work?
    Do you see your camera as a disk on the Desktop?
    Can you open the image files from te Finder?
    That wizzard-icon is puzzling. Have you used your camera with a PC and perhaps reformatted the SD Card from a different operating system? Then I'd try to import a different SD Card, that has been reformatted in the camera.

  • How can I copy photos from the camera roll to an album in ipad?

    How can I copy photos from the camera roll to an already existing album in ipad?

    If you are in thumbnail view in the Camera Roll, tap the Edit button in the upper right corner. Tap the photos that you want to add to the existing album. Tap - Add To - in the upper right corner and then tap - Existing Album.
    You can only add camera roll photos to albums that you have created on the iPad. You cannot add them to albums that you synced from iTunes.

  • Can't import photos from kodak camera, after4 years of successful? importing

    I have been using a Kodak Z740 camera for last few years . I now find that while I can see the photos on the camera review, when I import them to iPhoto, I can only see blank thumbnails. Yet if I deep dive into Picture folders I can find them eventually.
    I also use iPhone for photos and no issues there.
    Any ideas?

    Welcome to the Apple Discussions. Did you read any of the other topics regarding the Kodak Easyshare?
    iPhoto no longer recognizes photos from my Kodak EasyShare V803
    Just do a search in the form for "Kodak Easyshare" and you'll get lots of posts.
    OT

  • How can I remove photos from my camera roll without deleting them from an album?

    I have some photos in an album and also copies on my camera roll in. photos on my ipad2. I want to remove/delete from the camera roll without deleting them from the album. As far as I can see, when selected from the camera roll for deletion I am asked if I want to remove the photos from all locations - with no other options??
    Thank you for your help
    ian

    Which iOS version are you using?
    Are you also using iCloud?

  • Can't download photos from my camera into Elements 9.0

    Have Elements 9.0 which I just installed in October.  I cannot download photos from my camera .  On the ORGANIZE workspace I see no FILE, Get Photos, Help, Edit or even how to download the patches to make it current 9.0.  I seem to be missing some critical menu's.  I used Elements 4.0 for a number of years and it worked just fine.  I've wasted a lot of time and it is not clear to me that the situation I have has ever been encountered by anyone else.  Any help would be appreciated.

    Good questions and thanks for trying to help me out.  I’ve evolved through part of my problem but I know more than I understand.  Here is what I’ve done and what I’ve observed:
    1.  The menus in the top row left side are missing.  That is FILE, EDIT, FIND, VIEW, WINDOW and HELP are nowhere to be found.  The right side of the top row is OK (Sign In, Create New Adobe ID), Undo, Redo, Display, Home and –?X)
    2.  I then installed Elements 9.0 on my wife’s new Window 7 computer.  It looks just fine.  Everything is as it should be.
    3.  I had an idea a shifted the my computer from medium (125%) fonts to small (100%) fonts.  Everything looks fine.  I went and rechecked my wife’s notebook and it has medium (125%) fonts.  So my Windows computer with 18” monitor will not display PSE correctly at 125% but my wife’s notebook will!  It is hard to read, I’m 75, but it works.
    4.  I have no idea what causes the problem but I can use PSE just fine if I don’t mind straining to read.  So it looks like I have a solution to my original problem.
    5.  I tried to email a photo from each computer and that doesn’t work.  Separate problem and I find that others have had the identical problem.  At least I can describe the problem well enough to find all sorts of responses on the Internet. 
    Thanks for the help, I really appreciate it.
    Jim

  • Take photo from image stream using capture engine technique in media foundation

    Hi,
    I am beginner for media foundation.I have to develop Win32 desktop application using capture engine technique in media foundation.
    I have to implement the following features:1)Show video streaming 2)Capture video 3)Capture photo from still-image stream.These features are implemented in capture engine.
    I am able to take photo from video stream not from image stream.I tried to configure the image stream index in Addstream() api,but its giving MF_CAPTURE_ENGINE_ERROR error.
    To trigger the still pin,use
    the IAMVideoControl::SetMode method
    in directshow. How do i implement this feature using capture engine technique in MF?My question
    is-is it possible do it in Media foundtion??I have searched many sites but no luck.
    Here the sample code which i used to capture an image.
    HRESULT TakePhoto()
    HRESULT hr = m_pEngine->GetSink(MF_CAPTURE_ENGINE_SINK_TYPE_PHOTO, &pSink);
    if (FAILED(hr))
    goto done;
    hr = pSink->QueryInterface(IID_PPV_ARGS(&pPhoto));
    if (FAILED(hr))
    goto done;
    hr = m_pEngine->GetSource(&pSource);
    if (FAILED(hr))
    goto done;
    hr = pSource->GetCurrentDeviceMediaType(1, &pMediaType); // 1 is Image stream index.I will get current image stream media type here.
    if (FAILED(hr))
    goto done;
    //Configure the photo format
    hr = CreatePhotoMediaType(pMediaType, &pMediaType2,GUID_ContainerFormatBmp);
    if (FAILED(hr))
    goto done;
    hr = pPhoto->RemoveAllStreams();
    if (FAILED(hr))
    goto done;
    DWORD dwSinkStreamIndex;
    // Try to connect the first still image stream to the photo sink
    if(bHasPhotoStream)
    hr = pPhoto->AddStream((DWORD)MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_PHOTO, pMediaType2, NULL, &dwSinkStreamIndex); //Instead of MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_PHOTO,i gave index as 1.i am getting error
    if(FAILED(hr))
    goto done;
    hr = pPhoto->SetOutputFileName(pszFileName);
    if (FAILED(hr))
    goto done;
    hr = m_pEngine->TakePhoto();
    if (FAILED(hr))
    goto done;
    return hr;
    HRESULT OnCaptureEvent(WPARAM wParam, LPARAM lParam)
    GUID guidType;
    HRESULT hrStatus;
    IMFMediaEvent *pEvent = reinterpret_cast<IMFMediaEvent*>(wParam);
    hr = pEvent->GetExtendedType(&guidType);
    if (SUCCEEDED(hr))
    if (guidType == MF_CAPTURE_ENGINE_ERROR) //i got this error if i give dwSourceStreamIndex as '1' in Addstresm api
    DestroyCaptureEngine();
    pEvent->Release();
    return hrStatus;
    Please help me to solve this problem.Past one week,I am working on this issue and i couldnt find the solution.Please give me a some idea or some sample code to solve this problem.
    Thanks in advance.
    Regards,
    Ambika

    Hi Everyone,
    Any help will be appreciated.
    Regards
    Ambika

  • I can't import photos from my camera to iphoto

    When I try to import my photos from my nikkon digital camera memory card to iphoto it starts downloading but after about 100 pictures a message appears saying error downloading image - iPhoto cannot import your photos because there was a problem downloading an image. I've tried to import a few at a time and it worked with some but with most the same message keeps appearing. What do you think could be the problem? How can I fix it?

    Make sure your HDD is not near full, my wife is queen of this. Take your un-frequency used photos and move them to an external HDD, you are probably getting too full on your internal.
    Drives are cheap, allows you to keep your priceless photos, avoiding a catastrophic loss. This will be an easy storage trasnfer, which will you free you up to use your internal drive.
    My wife has done this before and now she keeps her HDD clean, which allows her to use her MAC as a trasnfer-station.
    Try this and maybe it will help you out, but, do it soon, before your HDD crashes, and you loose all your stuff.
    Also, spend the smal amount of money to buy a back up drive for your photos/music.
    Also make sure you spend the small amount of money to buy a Timemachine backup drive.
    If you ave plenty of HDD space, make sure you have the latest RAW camera drivers installed, which can be downloaded from the Apple Support site.
    All the  Best

  • Can't import photos from my camera since the update, says file is unrecognizeable

    Since the recent photos update, I can no longer import photos from my Kodak Easyshare camera. Previously all I had to do was plug it into the Mac, turn it on and it would import with no problems. Now it is telling me that the files are unreadable or something. I don't know how to find the camera as a device on the Mac when its plugged in, to go at the problem that way. Not sure what to do at this point. Getting frustrated.

    MHoward71 wrote:
    Yes it is OS X Yosemite 10.10.3
    Then use either of my recommendations above. If you decide to get a card reader (I'd recommend this!) then simply insert the card into it, connect the reader to the Mac and use Photos import feature and import from the card. If you need additional help using Photos please use the Photos forum, you can get there by clicking Photos for Mac

  • Can't download photos from digital camera after latest software update

    Hi,
    since the latest update on the 28.9.08 I have trouble downloading photos from my Canon Eos 400D. I can't use "Digitale Bilder" anymore, nor Adobe Bridge Photo Downloader or iPhoto. I have to use my partners MacBook that doesn't have the update yet. Could it have something to do with the RAW-Compatibility-Update? And does Apple know and do something about it?
    Or can I fix this myself?
    I'd appreciate help.
    smartgrey

    Same here... I have a Powershot Elph340HS and a SD960IS, I've updated Canon ImageBrowser and CamaraWindow and it just says "no camera detected"... so I used a different usb to make sure it wasn't that, I've tried everything, Preview, iPhoto, even iMovie... all of which worked before for importing from my cameras...
    OS X Yosemite (10.10) I'm on a Macbook Pro
    please fix this Apple!!!!

  • I can't import photos from my camera in aperture.Nothing is happening when I plug the camera into the computer.  This has not happened before.

    All of a sudden, I can't seem to import photos from my Canon to Aperture.  Nothing is happening.  This hasn't happened before.  What can I do?

    All of a sudden, I've got the same problems too. Canon EOS camera connected via USB to Aperture, and nothing happens. I've got Aperture running, and using System Profiler the camera shows up on the USB tree. Using Image Capture the camera shows up briefly, but then disappears. I know it's not a battery problem with the camera, since it's fully charged and it's not a USB problem since the cable works for everything else.

  • Can't download photos from canon camera

    Since I downloaded Yosemite, I can't get my Mac desktop to recognize my Canon PowerShot SD1100IS Digital ELPH camera.  I've gone into Preview, Finder and Image Capture and it's not there.  How do I get my photos onto my computer from the camera?

    Same here... I have a Powershot Elph340HS and a SD960IS, I've updated Canon ImageBrowser and CamaraWindow and it just says "no camera detected"... so I used a different usb to make sure it wasn't that, I've tried everything, Preview, iPhoto, even iMovie... all of which worked before for importing from my cameras...
    OS X Yosemite (10.10) I'm on a Macbook Pro
    please fix this Apple!!!!

  • HT1296 How can I take photos from my computer and send it to my ipad

    How can I transfer my photos from my computer which is in my photo library on my Dell to my new IPAD? I have an app called Sky Drive but no help I have iCloud also. Can someone please help me or do I have to sit and send one photo at a time from my computer to my new 3rd generation IPAD. Please Help. Thank You Michelle Elia Mistye1945  

    Another way. You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    Secrets of the iPad Camera Connection Kit
    http://howto.cnet.com/8301-11310_39-57401068-285/secrets-of-the-ipad-camera-conn ection-kit/
     Cheers, Tom

  • Can I move photos from the Camera Roll to a new Albumn (not to add)?

    I added some photos from Camera Roll to a new albumn and now I have two copies in two albumn. I tried to delete those photos from Camera Roll and the photos in the new albumn are also deleted. Can I move them instead of adding them to the new albumn?

    No, when you 'copy' a photo into an album in the Photos app on your phone you are effectively just creating a pointer to the original photo, you aren't creating a second copy of it - if you then delete the original photo you will also be deleting all pointers to it.
    There are third-party photo management apps such as Photo Manager Pro which allow you to create albums in them and move photos into those albums - they can also copy photos to/from the Photos app (and a computer), so you could do your album management in a different app.

Maybe you are looking for

  • Adobe flash player - webcam bild verpixelt,wenn ich sende

    hallo nun ich habe seit etwa einem Jahr ein Problem mit dem Adobe flash player.Bin schon am verzweifeln und hoffe dass jemand hier eine Idee hat was ich noch tun könnte. Mein Problem: Ich kann mit meinem Adobe flash player ohne Probleme Inhalte aufru

  • PDFMaker in Acrobat 9 Standard not working

    I'm running Windows 7 x64 and have Acrobat 9 (updated through 9.4).  In January, I downloaded a trial of Acrobat X, decided I didn't want it.  I uninstalled it and still have 9.  However (and I think this is when it began), the Create Adobe PDF funct

  • Reactivate subscription at same rate as original s...

    I had a montly subscription and was happy with it.  I accumulated so many unused minutes that I decided to cancel the subsription. I lost all the minutes that were unused.  I ordered a new subscription and the rates had gone up a lot.  Can I reactiva

  • Using TIC ASIC Features in the NI GPIB/VXI

    Hi, I am trying to utilize a feature detailed in the NI tutorial Triggering With NI-VXI of the TIC ASIC within the NI GPIB/VXI controller in my application. I am trying to generate a simple SYNC trigger (low going pulse) on VXI TTL0, map that trigger

  • ITunes freezes, I must force quit

    I updated this week to the latest ITunes version. Today I tried to open the SW and it freezes on the Itunes store page although my connection to Internet is on through Airport, I cannot change to the Library or anything else. It also seems to have lo