Adding onto this, is there a way to get the server to log out which operations/how many operations were delegated to the CPU? I believe its something that the tflite interpreter can spit out and would be super useful when trying to figure out why a model isnt loading correctly.
Posts made by fhaltmayer
-
RE: YOLOv8 with NPU (VOXL2 Mini)posted in Ask your questions right here!
-
IMX412 not detectingposted in Image Sensors
Hi,
Trying to run the IMX412 with the VOXL2 and have followed many of the threads regarding getting it to work. Ive gotten close but am running into a main problem. The camera is being noticed when running voxl-camera-server -l but it isnt being counted as a valid one. What am I missing here?voxl2:/usr/lib/camera$ voxl-camera-server -l DEBUG: Attempting to open the hal module DEBUG: SUCCESS: Camera module opened on attempt 0 DEBUG: ----------- Number of cameras: 0 DEBUG: cci-direct: using voxl_platform_mod config 0 layout DEBUG: trying to open idx 0 /dev/v4l-subdev8 DEBUG: trying to open idx 1 /dev/v4l-subdev9 DEBUG: trying to open idx 2 /dev/v4l-subdev11 Cam idx: 0, Cam slot: 2, Slave Address: 0x0034, Sensor Id: 0x0577 DEBUG: trying to open idx 3 /dev/v4l-subdev12 DEBUG: trying to open idx 4 /dev/v4l-subdev10 DEBUG: trying to open idx 5 /dev/v4l-subdev13 DEBUG: Note: This list comes from the HAL module and may not be indicative DEBUG: of configurations that have full pipelines DEBUG: Number of cameras: 0The server-config:
voxl2:/usr/lib/camera$ cat /etc/modalai/voxl-camera-server.conf /** * voxl-camera-server Configuration File * * Each camera has configurations for up to 4 HAL3 streams: * - `preview` stream for raw unprocessed images from CV cameras * - `small_video` 720p (ish) h264/h265 compressed for fpv video streaming * - `large_video` 4k (ish) h264/h265 for onboard video recording to disk * - `snapshot` ISP-processed JPG snapshots that get saved to disk * * on QRB5165 platforms (VOXL2 and VOXL2 mini) you can only have 3 of the 4 enabled * * This file is generated from default values by voxl-configure-cameras. * Do not expect arbitrary resolutions to work, the ISP and video compression * pipelines only support very specific resolutions. * * The default video compression mode is cqp or Constant Quantization Parameter * * * */ { "version": 0.1, "fsync_en": false, "fsync_gpio": 109, "cameras": [{ "type": "imx412", "name": "imx412", "enabled": true, "camera_id": 0, "fps": 30, "en_rotate": false, "en_preview": false, "preview_width": 640, "preview_height": 480, "en_raw_preview": false, "en_small_video": true, "small_video_width": 1024, "small_video_height": 768, "small_venc_mode": "h264", "small_venc_br_ctrl": "cqp", "small_venc_Qfixed": 30, "small_venc_Qmin": 15, "small_venc_Qmax": 40, "small_venc_nPframes": 9, "small_venc_mbps": 2, "en_large_video": true, "large_video_width": 4056, "large_video_height": 3040, "large_venc_mode": "h264", "large_venc_br_ctrl": "cqp", "large_venc_Qfixed": 40, "large_venc_Qmin": 15, "large_venc_Qmax": 50, "large_venc_nPframes": 29, "large_venc_mbps": 40, "en_snapshot": true, "en_snapshot_width": 4056, "en_snapshot_height": 3040, "exif_focal_length": 3.1, "exif_focal_length_in_35mm_format": 17, "exif_fnumber": 1.24, "snapshot_jpeg_quality": 75, "ae_mode": "isp", "gain_min": 54, "gain_max": 8000 }] } -
RE: Station Mode Issue with Voxl Suite 1.6.3posted in Ask your questions right here!
@Alex-Kushleyev The Alfa Network AWU2036
-
Ubuntu 20.04posted in VOXL SDK
Hi,
Are there any updates for getting Ubuntu 20.04 or above on the Voxl2. 2 years ago it was stated that it would be getting released soon, is that still the case?https://forum.modalai.com/topic/4035/update-on-operating-system-upgrades-to-20-04-22-04-and-24-04/3
-
RE: Station Mode Issue with Voxl Suite 1.6.3posted in Ask your questions right here!
I'm also facing this after updating. Worked on an older version but it is now defaulting to the link local. One thing I noticed is that it doesn't go through the connection process (finding the network, trying password, etc) when using voxl-wifi, just skips all of it:
Configuring station mode...
Detected WiFi interface: wlan0
NetworkManager not installed, using legacy wpa_supplicant/hostapd
stopping softap mode
Enabling station mode on wlan0 (legacy)...
creating wpa_supplicant configuration for station mode
Station mode enabled on wlan0
Station mode configured!This is using the MCBL-00022 kit on the voxl2.
Downgrading to 1.6.2 and the wifi works but seems a bit bugged because it cant find it at first even though it connects successfully :
Detected WiFi interface: wlan0
Disabling all WiFi modes...
Detected WiFi interface: wlan0
Scanning for network 'xxx'...
Scan succeeded, looking for network 'xxx'
Could not find network 'xxx' in scan results - proceeding anyway
Enabling station mode on wlan0...
creating wpa_supplicant configuration for station mode
Station mode enabled on wlan0
Station mode configured! -
RE: Qualcomm SNPE Install and Setupposted in Ask your questions right here!
@tom Do you have any tips/tricks for getting the SNPE working on the current build?
-
RE: Qualcomm SNPE Install and Setupposted in Ask your questions right here!
Anyone have any ideas in regards to this?
-
Qualcomm SNPE Install and Setupposted in Ask your questions right here!
- Software: Suite 1.5.0, System image 1.8.04
- Hardware: Voxl2: TF-M0054-4-V1-C11
- Factory setup of default software
Hi all,
I need to get access to SNPE (Qulacomm's Neural Processing SDK) and was wondering if there is a guide or anyone has any advice getting the library setup on the Voxl2. Current releases of SNPE only support python3.10 and ubuntu 20.04 which these boards are not running. I managed to find a previous release (2.24) that is python3.6 based but still the later version of Ubuntu. Is this something that can be done or am I digging myself into a hole?Best,
Filip