Issues setting up for stillcapture #92
Replies: 6 comments 4 replies
-
This looks like you are self building libcamera. Please make sure you install all the required dependencies listed in the readme first. |
Beta Was this translation helpful? Give feedback.
-
What would you recommend referencing? If I want to be able to capture an image and send that data to display on another PI? Currently I just want to get a functional application that will take a picture or open the preview window. Running into issues.Sent from my iPhoneOn Mar 6, 2024, at 1:42 AM, Kieran Bingham ***@***.***> wrote:
[0:14:10.199897319] [4969] WARN IPAManager ipa_manager.cpp:114 Public key not valid
This looks like you are self building libcamera. Please make sure you install all the required dependencies listed in the readme first.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I reinstalled libcamera and decided to follow your example on simple-cam
running into ipa_manager.cpp:144 Public key not valid.
…On Thu, Mar 7, 2024 at 1:05 AM Kieran Bingham ***@***.***> wrote:
using libcamera with the C++ api is fine, but I still believe something
you have done on your system has broken the libcamera installation. You
should reinstall libcamera from the raspberry pi packages, or rebuild it
correctly.
—
Reply to this email directly, view it on GitHub
<#92 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AYWONHH6LUY4QDEEL7G4Q6DYXAUXNAVCNFSM6AAAAABEH3EICSVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DOMBUGI2TA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
More in depth of what I have done:
I am using a Raspberry Pi 4b
I installed the Raspberry Pi OS (32-bit)
I installed updates
I cloned the libcamera using the libcamera website
Installed meson,ninja,CMake, yaml, ply and other necessities.
here is the meson_setup_results.
I created a file called Camera that has the simple-cam and the other 4
files from the documentation.
the results I am getting is in the simple_cam_results
…On Tue, Mar 12, 2024 at 9:54 PM Kieran Bingham ***@***.***> wrote:
If it's still saying public key not valid then it certainly sounds like
your RPI installation is broken out messed up.
—
Reply to this email directly, view it on GitHub
<#92 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AYWONHCLB3HRUU5PC65NYJTYX52PXAVCNFSM6AAAAABEH3EICSVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DONRVGQYTI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
but I still maintain, unless you're changing and developing libcamera - you probably shouldn't be doing these:
You should test simple-cam first running against the libcamera packages installed by raspberry pi. The message " [0:14:10.199897319] [4969] WARN IPAManager ipa_manager.cpp:114 Public key not valid" means that you have not installed all the required dependencies. I'm guessing you've missed (at least) the following:
|
Beta Was this translation helpful? Give feedback.
-
For any further support, please use the libcamera-devel mailing list where there is a bigger audience than just me. |
Beta Was this translation helpful? Give feedback.
-
Error
kawsplice@raspberrypi2:~/CameraDemov1/build $ ./libcamera-demo
[0:14:10.199897319] [4969] WARN IPAManager ipa_manager.cpp:114 Public key not valid
[0:14:10.204293741] [4969] INFO Camera camera_manager.cpp:284 libcamera v0.2.0+27-6f1bd9cf-dirty (2024-02-17T23:15:14+00:00)
[0:14:10.218046989] [4970] WARN CameraSensorProperties camera_sensor_properties.cpp:262 No static properties available for 'imx708_wide'
[0:14:10.218190628] [4970] WARN CameraSensorProperties camera_sensor_properties.cpp:264 Please consider updating the camera sensor properties database
[0:14:10.268063821] [4970] INFO RPI vc4.cpp:401 Registered camera /base/soc/i2c0mux/i2c@1/imx708@1a to Unicam device /dev/media3 and ISP device /dev/media0
Configuring still capture...
Still capture setup complete
[0:14:10.270944600] [4969] INFO Camera camera.cpp:1183 configuring streams: (0) 1920x1080-YUV420
[0:14:10.272544219] [4970] INFO RPI vc4.cpp:559 Sensor: /base/soc/i2c0mux/i2c@1/imx708@1a - Selected sensor format: 2304x1296-SBGGR10_1X10 - Selected unicam format: 2304x1296-pBAA
[0:14:12.294284304] [4970] ERROR IPCPipe ipc_pipe_unixsocket.cpp:134 Call timeout!
[0:14:12.294415184] [4970] ERROR IPCPipe ipc_pipe_unixsocket.cpp:66 Failed to call sync
[0:14:12.294444627] [4970] ERROR IPAProxy raspberrypi_ipa_proxy.cpp:261 Failed to call start
[0:14:12.337590775] [4970] ERROR IPCUnixSocket ipc_unixsocket.cpp:191 Failed to send: Connection refused
[0:14:12.337711453] [4970] ERROR IPCPipe ipc_pipe_unixsocket.cpp:66 Failed to call sync
[0:14:12.337738747] [4970] ERROR IPAProxy raspberrypi_ipa_proxy.cpp:432 Failed to call mapBuffers
[0:14:12.338790717] [4970] ERROR IPCUnixSocket ipc_unixsocket.cpp:191 Failed to send: Transport endpoint is not connected
[0:14:12.338869027] [4970] ERROR IPCPipe ipc_pipe_unixsocket.cpp:66 Failed to call sync
[0:14:12.338894988] [4970] ERROR IPAProxy raspberrypi_ipa_proxy.cpp:432 Failed to call mapBuffers
Down below is the files I have in the program.
Libcamerafiles.txt
Beta Was this translation helpful? Give feedback.
All reactions