ARAniket Rayinblog.aniketray.me·Jan 20, 2025 · 1 min readHow to properly use uWebSocket in CMakecmake_minimum_required(VERSION 3.28) project(MyProject) set(CMAKE_CXX_STANDARD 20) add_executable(MyProject main.cpp) include(FetchContent) FetchContent_Declare( uws GIT_REPOSITORY https://github.com/uNetworking/uWebSockets.git GIT_TA...00
ARAniket Rayinblog.aniketray.me·Aug 19, 2021 · 2 min readMediaPipe Audio Event ClassificationDuring the Google Summer of Code, my primary project was to build a brand-new Cross-platform Solution using the MediaPipe Framework. After much discussion with my mentor, we agreed on building an audio-event classifier Solution using the Mediapipe Fr...00
ARAniket Rayinblog.aniketray.me·Aug 19, 2021 · 2 min readPython API for the MediaPipe Object Detection SolutionThis is an extension to Mediapipe Object Detection Solution Configuration Options - max_object_detection Maximum number of objects to detect. Default to 3. - min_detection_confidence Minimum confidence value ([0.0, 1.0]) from the object detection ...04TS
ARAniket Rayinblog.aniketray.me·Aug 18, 2021 · 2 min readPython Module for customizing Drawing Styles for MediaPipe Hand Solution APIMediaPipe Hands is a high-fidelity hand and finger tracking solution. It employs machine learning (ML) to infer 21 3D landmarks of a hand from just a single frame. (Read More) Until now, the Drawing styles (Landmarks and Annotations) could be modifi...00