Send Images from CVS-1450 to host

How is the better way to retrieve the acquired images from CVS when I realize an host application?
Is the VI-Server the better solution?
Anyone has some examples?
Thanks

Have a look at the following example on www.ni.com :
Compress IMAQ Images to JPEG Streams for Faster Transfer
http://sine.ni.com/apps/we/niepd_web_display.DISPLAY_EPD4?p_guid=B45EACE3E88
D56A4E034080020E74861&p_node=DZ52507&p_submitted=N&p_rank=&p_answer=&p_sourc
e=External
CVS side :
You acquire the images, compress the images, then use a TCP server in order
to send images to the host.
Host side:
Use a TCP client to retrieve the images.
Jean-Christophe BENOIT
Alliance Vision
"FABIOSIEMENS" wrote in message
news:[email protected]..
> How is the better way to retrieve the acquired images from CVS when I
> realize an host application?
> Is the VI-Server the better solution?
> Anyone has some exam
ples?
> Thanks

Similar Messages

  • Sending images from lightroom 5 to elements 12 for panorama.

    Hello. I have elements 12 and lightroom 5 installed. I go to send 5 images from lightroom to send to elements to do the pano. When I select the 5 images I want I click go to edit and then select merge in panorama. It then opens up elements 12 but after waiting for some time the images font show up. It used to work but now it don't. In lightroom 5 I have it set in the presences right so my external editor is elements 12. After a while I looked in my pictures section in windows and lo and behold all my images that I have sent to elements to do psn os with are in pictures section as raw files. So lightroom is sending them but not to my external editor.
    Can someone please help me this is very frustrating.
    thanks for any help you can offer me.

    Which version of Lightroom 5 do you have?
    Which version of camera raw are you using in photoshop elements 12?
    In Lightroom what are the preferences at the top of the External Editing tab set to?
    I realize that yours may be different, because you don't have photoshop installed, but here even though photoshop cc 2014 is on this machine, as long as i have pse 12 and not cc 2014 open before
    choosing Photo>Edit in>Merge to Panorama in Photoshop, it does work for pse 12 with nikon nef files (camera raw files), but it uses the preferences at the top of the external editing tab instead of the ones below.
    So if the Bit Depth is not set to to 8 bits/channel then photomerge doesn't work.

  • Problem in sending image from applet to servlet

    dear friends,
    i have a need to send an image from applet to servlet via HttpConnection and getting back that image from applet.
    i am struggling with this sice many hours and got tired by searching any post that would help me but haven't got yet.
    i tried using this code but it dosent make any execution sit right. i got NPE at ImageIcon.getDescription() line;
    at applet side
          jf.setContentPane(getJContentPane());
                     FileDialog fd=new FileDialog(jf,"hi");
                     fd.setMode(FileDialog.LOAD);
                     fd.setVisible(true);   
                     v=new Vector();
                     try{                                                
                               FileInputStream fis=new FileInputStream(new File(fd.getDirectory()+fd.getFile()));      
                               byte[] imgbuffer=new byte[fis.available()];
                               fis.read(imgbuffer);
                               ImageIcon imgdata=new ImageIcon(imgbuffer);
                               v.add(0,imgicon);
                                String strwp ="/UASProject/Storeimage";              
                                URL servletURL = new URL(getCodeBase(),strwp);             
                                HttpURLConnection servletCon = (HttpURLConnection)servletURL.openConnection();       
                                servletCon.setDoInput(true); 
                                servletCon.setDoOutput(true);
                                servletCon.setUseCaches(false);
                                servletCon.setDefaultUseCaches(false);   
                                servletCon.setRequestMethod("POST");     
                                servletCon.setRequestProperty("Content-Type", "application/octet-stream");   
                                servletCon.connect();            
                                ObjectOutputStream oboutStream = new ObjectOutputStream(servletCon.getOutputStream());                     
                                oboutStream.writeObject(v);
                                v.remove(0);
                                oboutStream.flush();      
                                oboutStream.close();  
                                //read back from servlet
                                ObjectInputStream inputStream = new ObjectInputStream(servletCon.getInputStream());
                                 v= (Vector)inputStream.readObject();                     
                                 imgicon=(ImageIcon)v.get(1);
                                 showimg.setIcon(imgicon);
                                 this.getContentPane().validate();
                                 this.validate();  
                                inputStream.close();                                                        
                             //  repaint();
                     }catch(Exception e){e.printStackTrace();}  and this is at servlet side
            try {       
                         Vector v=new Vector();                    
                         ObjectInputStream inputFromjsp = new ObjectInputStream(request.getInputStream());                                      
                          v = (Vector)inputFromjsp.readObject();                                                                                                          
                          imgicon=(ImageIcon)v.get(0);                     
                          inputFromjsp.close();            
                          System.out.println(imgicon.getDescription());                                      
                          v.remove(0);
                          v.add(1,imgicon);
    //sending back to applet
                           response.setContentType("application/octet-stream");
                          ObjectOutputStream oboutstream=new ObjectOutputStream(response.getOutputStream());            
                          oboutstream.writeObject(v);
                          oboutstream.flush();
                          oboutstream.close();
                   } catch (Exception e) {e.printStackTrace();}  i really need your help. please let me out of this headche
    thanks
    Edited by: san_4u on Nov 24, 2007 1:00 PM

    BalusC wrote:
    san_4u wrote:
    how can i made a HttpClient PostMethod using java applets? as i have experience making request using HttpURLConnection.POST method. ok first of all i am going make a search of this only after i will tell. please be onlineOnce again, see link [3] in my first reply of your former topic.
    yeah! i got the related topic at http://www.theserverside.com/tt/articles/article.tss?l=HttpClient_FileUpload. please look it, i am reading it right now and expecting to be reliable for me.
    well what i got, when request made by html code(stated above) then all the form fields and file data mixed as binary data and available in HttpServletRequest.getinputstream. and at servlet side we have to use a mutipart parser of DiskFileItemFactory class that automatically parse the file data and return a FileItem object cotaing the actual file data,right?.You can also setup the MultipartFilter in your environment and don't >care about it further. Uploaded files will be available as request attributes in the servlet.is the multipartfilter class file available in jar files(that u suggested to add in yours article) so that i can use it directly? one more thing the import org.apache.commons.httpclient package is not available in these jar files, so where can got it from?
    one mere question..
    i looked somewhere that when we request for a file from webserver using web browser then there is a server that process our request and after retrieving that file from database it sends back as response.
    now i confused that, wheather these webservers are like apache tomcat, IBM's webspher etc those processes these request or there is a unique server that always turned on and process all the request?
    because, suppose in an orgnisation made it's website using its own server then, in fact, all the time it will not turned on its server or yes it will? and a user can make a search for kind of information about this orgnisation at any time.
    hopes, you will have understand my quary, then please let me know the actual process
    thanks
    Edited by: san_4u on Nov 25, 2007 11:25 AM

  • Send image from movile device

    hello all,
    I know take an image from movile device with midp2.0 but is it posible to send this image to an apliccation server with midp2.0?
    Thanks in advance,
    Ra�l

    Hi, I ma trying to solve the problem - which you have already solved - that of taking an image. Can you point me at an information source? Any help much appreciated.

  • Sending Images from Mail to Aperture

    Hey all,
    I'm sure people have asked this, but I haven't found any satisfactory responses, so here we go again...
    I want a simple way to send images I receive via email to Aperture rather than iPhoto.
    How can I do this?
    Is it simple?
    If not, why haven't Apple sorted this out? Given even cameraphones are now snapping at 6 - 10 mpixels, images sent via email can no longer be considered 'amateur'.
    Thanks
    Sam

    Please ask Apple to add this feature. It's there for iPhoto, we'd like it for Aperture.
    http://www.apple.com/feedback/aperture.html
    Until then, use Frank's Automater action. It works great.

  • How to send image from web start application to my servlet

    Hi all,
    I have uploaded image in my web start application and now i want to send that image to my servlet. I have created URL connection and using output stream i am able to send data in String as well as numeric format but i have to send image also.
    please help.
    thanks in advance.

    I have done it. contact [email protected]

  • Can't send email from Apple mail using hosted exchange since upgrade to 10.5.8

    I've got a client who just upgraded to 10.8. Since doing so he can recieve email but not send it for a hosted exchange account. He can send and recieve from his personal pop account. It is a wireless connection.  I have tried the following without any success:
    1. Verified all the config info was correct (server password etc) - no change
    2. Deleted and re-added the account - same result
    3. Deleted keychain data and readed the account - no change.
    4. Ran disk utility (why not?) - no change
    5. Removed an internet sharing app called open garden - no change
    6. Installed 10.8.1 - no change
    After trying all of this when we start mail everything looks good and then the outbound server abruptly goes "offline". The exchange host says there are no issues on their end. Internet works too. Email delivers/sends to his iPhone, iPad, and a home iMac that was also upgraded to 10.8.
    Anyone with other ideas? This one has me stumped.
    -Jonathan

    I have the exact same issue, but with a standard IMAP account and SMTP.  My iPhone can send out, using the EXACT same settings, from the exact same WiFi connection...but the 10.8 MacBook cannot send at all.  The only account I can send out on is my iCloud account. 
    I have also tried all the steps above...no luck.
    I have also turned off all network filters and firewalls...no luck.  (And as I said above, my iPhone is on the exact same WiFi connection and using the exact same settings, and it can send fine.)
    Other messages I've found via Google have suggested simply forcing the SMTP server to use Port 25, but that didn't work for me either.

  • I am unable to send images from Lightroom to PSCC2014 using the edit in command.

    Since the latest update to CC2014, my LR edit in menu is not working; PS opens however no image appears.
    I cannot send a single image to CC2014.
    The merge to panorama is not working.
    The open as smart object is working.
    Open as layers is not working.
    Merge to HDR Pro is not working - PC doesn't even open!

    Ok, now, typically, it's mysteriously working. No idea if what I was doing caused it. Set up the account as a POP one using my work outgoing server instead of mail.me.com, discovered that the phone automatically removed all my outgoing mail servers, right after I'd activated them all, so went back and reactivated. Sent email successfully. Created another account as IMAP but everything else the same, and now it suddenly works.
    This has happened to me several times in the past.

  • How to send Images from FCP to Color

    Hey guys, so I've pulled some images off the web and slapped them into my timeline. Trouble is when I send them to Color, they don't work. Why is this, is there a work around
    Image of items inside color.
    http://img251.imageshack.us/img251/3504/upshotfptbt283.png

    Sorry, I should have searched the forum.
    Question answered.

  • Cost to Send Image from Phone to Online Album

    I was under the impression that it was supposed to be free to send photos I took with the camera on my cell phone to the online album.
    So why was the bill about a $100 this month? I can't afford that. How am I supposed to get the photos off of my LG VX5500 for free?
    I'm only a part of a family plan but with things like they are now I won't be going with verizon when I can get my own plan.

    hi Elistariel -
    With no texting plan, it is 25 cents per picture message. The LG VX5500 (same phone my daughter has) does not use a memory card, so you can try two different programs on your computer (both free) and see if either one will get the pics off and saved on your computer; from there you can upload to your online album without a per picture charge.
    You can try Verizon's VCast media manager - download and install it on your computer, then use the USB cable to link the phone to the computer and transfer the pics with VCast.
    Here's a link
    A third party program called BitPim will also work, but it's more technical and does a lot more than just transfer your media. It can also brick your phone if you don't know what you are doing, so it's "use at your own risk", as Verizon won't cover any losses due to using BitPim. It does work though--I have used it, very cautiously!

  • J2ee Webservices(How i can send Image from java to C sharp)

    Dear Everyone
    Hi
    I am currently working on J2EE base web services project.
    I want to transfer some binary data as Images or files to client as (client written in c sharp).
    How i can do this exactly because i have no idea
    I am usnig sun App Server or JWSDP for this purpose
    Is there any one who has some experience with such knowledge.
    Kindly give me ur suggestions regarding this.
    Kind Regard
    kashif

    Thanks for the quick reply...i tried that and it works ...but not sure how to release that memory got from " New " and sure....there results memoryleak.this method will be called about 50 lakh plus times...so application suffers due to this memory leak....is any way i can avoid using New with in my Dll.....?

  • Sending image from MS SQL SERVER to Oracle BLOB

    Hey all, we're trying update Oracle via a SQL Server linked server and we're having an issue with a blob column. The update from SQL is:
    UPDATE Banner..GENERAL.PS_EBI_IF_TBL
    set photo = a.blob_file, photo_change_date=a.blob_date
    from PWNT.dbo.BLOBS a, PWNT.dbo.BADGE_V b
    where a.ID = b.ID
    and base_name = b.BADGE_BASE_NAME
    and b.BADGE_blob_date > getdate()-.021
    GO
    The error we get is:
    OLE DB provider "OraOLEDB.Oracle" for linked server "Banner" returned message "ORA-01747: invalid user.table.column, table.column, or column specification".
    The syntax is correct, we can run it if the column being updated (photo) is not a blob, so we believe there is something else we have to do because of the blob. Has anybody done anything like this and know how it works? Thanks!
    Tom

    Given that there are no version numbers is your post I can imagine many possibilities for misconfiguration. Especially as an Oracle BLOB bears no direct size relationship to anything MS SQL could possibly support.

  • To send image to a VC model from Backend system

    hi Experts,
    Is it possible to send images from backend system to the VC model ?????
    If yes then how?
    Regards,
    Sanjyoti.

    Yes, it's possible.
    In our employee search model we've programmed a BAPI to return a picturelink to a picture of the employee as a simple text string. This is then mapped to an ordinary HTML view which only has one field: url.
    In this case all the "hard" work has been done in the back end. I can't tell you exactly how the BAPI is programmed, but the pictures are administrated in transaction PREL and are stored in SAPs content server.
    The links look like this: http://host:port/sap/bc/contentserver/300?get&pVersion=0046&contRep=Z2&docId=45C1AECE313D60D9E1000000C1A19044&compId=DATA
    If you look at BAPI BAPI_EMPLOYEE_GETDATA (which we have based our new z-bapi on) you will see the docID field values returned from port ARCHIVELINK (field: ARC_DOC_ID).
    Henning

  • After updating to ios 6.1.3 I cant send images through imessage

    Hello

    That’s strange that my description in my first post is not showing up
    I have noticed that after I updated my iOS on my iPhone 5 to 6.1.3 the iMessage can no longer send images to other iDevices
    Sending regular text works but once an image is attached the message informs me that it has not been delivered and a red exclamation mark appears
    I tried to send images from multiple networks
    LTE
    3G
    3 different WiFi networks
    All of these fail
    I also reset my device from a backup and reset my network settings with no luck
    I really hope that this gets fixed soon because I do use imessage to send photos to my friends that have their own iDevices

  • When sending images via iPhoto it doesn't register as sent mail in A

    When sending images from iPhoto it does not register as sent mail in Apple Mail. Is there an option to allow this?

    No.  But in iPhoto's Info tray for that photo there will be a note that the photo was mailed and to whom:
    Click to view full size
    OT

Maybe you are looking for

  • ALE logical system to client

    Hi, Is assignment of SAP logical system to client mandatory... I understand that we can give dummy names like SAP_A as logical systems but is it mandatory to assign them to clients.. I think Idoc can be sent to the respective SAP system through ports

  • I just bought the 29.99 a month Acrobat XI for one of my employees... should I just send him the .EXE file? Please confirm

    I bought it for one of my remote employees... Should I just share the EXE file or how they can start using it or they need anything else? Thanks

  • GOS in PA20

    Hi, we are using GOS in transaction pa20. If the user deletes the personalnumber in the RP50G-field, a specific button in the GOS Toolbar should be deactivated. Unfortunately the Methode "check_status" is not called again, if the user deletes the per

  • PeopleSoft Upgrade(DB2 8.46 to Oracle 8.49)

    Hello, We are trying to change database platform from DB2 to Oracle and tools release from 8.46 to 8.49 so far we are following Oracle Testmove methodology but the mail issue here is that we are spending lot of time doing this and so planning for alt

  • How to correctly transfer ebooks.

    Hello, I bought a couple of ebooks a long time ago, and I would like to transfer them from my computer to my laptop. Even though I have the receipt, the company isn't selling those ebooks anymore. Adobe Digital Edition won't let me read it on my lapt