03-18-2022 08:42 PM
I want to take photo with my phone, and send the data to LabVIEW system, How to do it?
03-20-2022 09:42 AM
How to solve it?
03-20-2022 11:37 PM - edited 03-20-2022 11:38 PM
I guess by doing some coding. Are you just doing this to familiarize yourself with LabVIEW? There are probably better, easier ways to do it.
03-21-2022 04:00 AM
There are several ways to send data.
Are you looking for a Wifi or USB transfer?
I'm not sure it matters. You need some sort of socket:
03-21-2022 12:35 PM
There are some android apps that turn your phone camera into a PC webcam (USB of wifi). Have not tried if that would work.
03-21-2022 01:57 PM
Hi Johnson,
@Johnson1213 wrote:
I want to take photo with my phone, and send the data to LabVIEW system, How to do it?
Generic answer to your generic question:
Seems quite easy, isn't it?
03-21-2022 05:04 PM - edited 03-21-2022 05:06 PM
@Johnson1213 wrote:
I want to take photo with my phone, and send the data to LabVIEW system, How to do it?
I without doing the project for you I would:
1) Set up a web service in Azure that accepts client connections for data transfer.
2) Create an Android App, (I recommend Flutter because it has some nice Azure web service integration tools and it builds for iOS as well) that you can take a picture and push it to your Azure cloud app.
3) finally write some Labview code that logs into your cloud app and pulls the picture and displays it. (Labview does not have great Azure integration tools but you can get at .NET which does have some Azure web service integration)
03-22-2022 04:38 AM
How to start the email program in LabVIEW?
LabVIEW can auto download the image form email?
I try to convert the color image to array, and send to LabVIEW, it was unsuccessful.
03-22-2022 04:40 AM
If I want to send color image from phone to LabVIEW using WIFI, How to do it?
What it photo format?
I try to convert color image to array in LabVIEW, it was unsuccessful .
03-22-2022 06:24 AM
@Johnson1213 wrote:
If I want to send color image from phone to LabVIEW using WIFI, How to do it?
What it photo format?
I try to convert color image to array in LabVIEW, it was unsuccessful .
Post what you have...