Fetch Raspberry PI Camera in Qt Widget Desktop Application with Open CV
-
wrote on 25 Oct 2018, 22:33 last edited by
@SGaist AFAIK webcams have low resolution for our purpose.
So we decided to use Raspberry pi with its high res camera.
Also our first development was based on raspberry pi itself and we wrote a program to run on Raspbian.
But now we need an app on windows so that common people can easily work with. -
@SGaist AFAIK webcams have low resolution for our purpose.
So we decided to use Raspberry pi with its high res camera.
Also our first development was based on raspberry pi itself and we wrote a program to run on Raspbian.
But now we need an app on windows so that common people can easily work with.@Nima-Ghorab
Hi
Maybe this could be interesting
https://hackernoon.com/spy-your-pet-with-a-raspberry-pi-camera-server-e71bb74f79ea -
@Nima-Ghorab
Hi
Maybe this could be interesting
https://hackernoon.com/spy-your-pet-with-a-raspberry-pi-camera-server-e71bb74f79eawrote on 26 Oct 2018, 21:13 last edited by@mrjj Thank you so much it's very useful.
How can I get this data with Open CV and show inside Qt widget app?
Is it streaming ? -
Yes it is. It's explained in that article.
As for OpenCV, see this question in their forum.
-
Yes it is. It's explained in that article.
As for OpenCV, see this question in their forum.
wrote on 9 Nov 2018, 00:56 last edited by Nima Ghorab 11 Sept 2018, 01:01@SGaist Thank you so much!
Just I have one more question.
If I want to control raspberry pi camera on my PC Qt widget app. how can I do that?
For example I want to modify raspberry pi camera ISO or brightness.
Should I write a C++ program on raspberry pi to listen to specific port so that I can send information from PC to it or is there much simpler and cleaner way for doing this?
Thank you so much! -
There are several possibilities, the network looks like one of the simpler to implement.
-
wrote on 10 Nov 2018, 00:45 last edited by Nima Ghorab 11 Oct 2018, 00:48
@SGaist Thank you so much!
So would you suggest me to write a client/server app to control raspberry camera from PC? -
What aspect do you want to control ?
-
wrote on 12 Nov 2018, 11:23 last edited by
@SGaist Control all aspect of raspberry pi camera including brightness, ISO, resolution, sharpness, contrast, saturation, video stabilization, exposure, shutter speed and etc...
-
Since you want to do remote control, then you can implement a REST API for that for example.