Support page for PortPulse.
If you experience bugs, crashes, syncing issues, or have feature requests, contact support below. We guarantee, there will be a response to the user within 24 hours of support request. Please email:
The GridNotes iOS app does not collect any user data of any kind. The app does not access the Internet at all. It only access and interacts through your computer hardware ports and Bluetooth ports. It has no access to the datastream however.
Please contact the developer if you have any other questions or queries regarding the privacy policy.
| """ | |
| Change Colour scheme from Viridis to whatever else you want (search up Matplotlib colour schemes) | |
| This has been formatted with Ruff 'cause I'm tidy like that | |
| Change the cluster number in line 82 to somewhere around 5-7 (dependent on your data variance) and your directory on line 81! | |
| """ | |
| import os | |
| import numpy as np | |
| import cv2 |
| import os | |
| import numpy as np | |
| import cv2 | |
| import matplotlib.pyplot as plt | |
| from sklearn.cluster import KMeans | |
| def load_yolo_labels(label_path): | |
| """Load bounding box dimensions from YOLO label files.""" | |
| boxes = [] |