How can i send image using UDP in Matlab code ?
Mostra commenti meno recenti
I want to create UDP communication between Java and Matlab. Matlab is us a server and while Java is the client. The client asks to the server to image. How can I write a code in Matlab to send the image to the client?
Risposta accettata
Più risposte (1)
Walter Roberson
il 5 Nov 2018
runudp.m :
%this is my code to send the image in Matlab
Sender = 'localhost'; % LocalHost for testing on the same computer
portSender = 33781;
ipReceiver = 'localhost'; % LocalHost for testing on the same computer
portReceiver = 33780;
BS = 1024;
udpReceiver = udp(Sender,portSender, 'LocalPort', portReceiver, 'OutputBufferSize', BS);
fopen(udpReceiver);
image = imread('peppers.png');
fwrite(udpReceiver , image(1:BS), 'uint8')
fclose(udpReceiver);
delete(udpReceiver);
xferudp.java :
import java.io.IOException;
import java.net.InetAddress;
import java.net.DatagramSocket;
import java.net.DatagramPacket;
import javax.imageio.ImageIO;
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.image.BufferedImage;
import java.awt.FlowLayout;
import java.io.ByteArrayInputStream;
import javax.swing.ImageIcon;
class xferudp {
//this java class code to receive the image and display
public static void main(String args[]) throws IOException {
InetAddress IPAddress = InetAddress.getByName("localhost"); // LocalHost for testing on the same computer
DatagramSocket clientSocket = new DatagramSocket(33781, IPAddress);
byte[] imageBuffer = new byte[1024 ] ;
DatagramPacket p=new
DatagramPacket(imageBuffer,imageBuffer.length);
System.out.println("UDP S: Receiving...");
clientSocket.receive(p);
byte[] buffer = p.getData();
BufferedImage img =ImageIO.read(new ByteArrayInputStream(buffer));
ImageIcon icon=new ImageIcon(img);
JFrame frame=new JFrame();
frame.setLayout(new FlowLayout());
frame.setSize(200,300);
JLabel lbl=new JLabel();
lbl.setIcon(icon);
frame.add(lbl);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
To use,
!javac -d . -classpath . xferudp.java
!sudo java xferudp
This gets as far as
Exception in thread "main" java.lang.NullPointerException
at javax.swing.ImageIcon.<init>(ImageIcon.java:204)
at xferudp.main(xferudp.java:35)
which might have something to do with the fact that we did not a valid image over to be decoded.
The write error was definitely tied to writing too much for the socket. Remember, there is no automatic segmentation for UDP, and no automatic reconstruction by order -- every UDP packet is independent of each other.
5 Commenti
Eritrea Tsegay
il 6 Nov 2018
Walter Roberson
il 6 Nov 2018
Have MATLAB transmit a complete image file, not the result of imread. The complete file must fit within BS bytes. BS must not be set beyond 4096, and it is possible that the largest you can actually use is 1492 or so (total of 1506 bytes in the udp packet including headers.)
If the file to send might be more than fits into one packet then you have a lot more work to do.
Walter Roberson
il 6 Nov 2018
I got it to work for a png file (but not for all image files.) Code is attached. Rename the xferudp.java.txt to xferudp.java and invoke the java compiler, and then (in a window different than the MATLAB window) sudo to run the code as shown above. Then in MATLAB, execute runudp . It will send over the coins.png sample image and the java side will display it.
If you need to send images that are more than 65535 bytes for the file, then you will need to send as multiple packets, and you will need to deal with reassembly taking into account that packets might not get delivered.
Eritrea Tsegay
il 7 Nov 2018
Mishal Malkani
il 5 Lug 2020
Can you please guide me about sending a file of more than 65KB from Client to Server in UDP communication in Matlab?I am unable to read the bytes of loaded image and have no idea about sending it from client to server!!
Categorie
Scopri di più su Java Package Integration in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!