Skip to content

Instantly share code, notes, and snippets.

View TheOracle2212's full-sized avatar

Jeeva Arjun TheOracle2212

  • N/A
  • Sunny Brisbane!!
  • 04:15 (UTC +10:00)
  • X @elonmusk
View GitHub Profile

Your App Name

Support page for PortPulse.


Support

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:

@TheOracle2212
TheOracle2212 / Readme.MD
Created May 3, 2026 08:19
Privacy Policy

Privacy Policy for PortPulse

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.

@TheOracle2212
TheOracle2212 / Anchor Generator.py
Last active March 26, 2025 09:46
YOLO Anchor generator using KMeans
"""
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
@TheOracle2212
TheOracle2212 / KMeans Anchor gen.py
Last active March 26, 2025 06:56
KMeans Anchor Generator for YOLO production.
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 = []