
PROGRAMMING PROJECTS
Home > Coding

SOLAR SYSTEM SIMULATION
This program simulates the solar system, featuring a physical controller for camera movement and rotation. The sun, positioned at the center and emitting light captured as lens flare by the camera, is programmed to spin around the origin. Newton’s Universal Law of Gravitation is integrated to simulate gravitational forces toward the sun. The planets initially move tangentially, ensuring that, in combination with gravitational forces, they orbit the sun with minimal error.
FACIAL AND HAND RECOGNITION
The program utilizes a Java library with machine learning capabilities to recognize faces and hands. Using the obtained data, the code draws red rectangles around faces and blue rectangles around hands. Additionally, a formula is applied to determine the distance to faces and hands, taking into account dimensions of the camera, image, and object.
Distance to Object (mm) = (f[mm] * real height[mm] * image height[px]) / (object height[px] * sensor height[mm])
POINT CLOUD
This project utilizes the Xbox 360 Kinect's depth sensor camera to capture a pattern of infrared light, providing distance data for each pixel. In the code, a three-dimensional representation is created by drawing points at each pixel's location, with the Z value determined by the depth data. Facial recognition is incorporated to establish a specific depth range for displaying points. Two coloring methods are implemented: the first, based on distance, with closer pixels appearing white and farther ones black, enabling functionality in low-light conditions. The second method derives RGB values from the camera for pixel coloring.
MARS SIMULATION
This project is an interactive simulation of the Martian surface, featuring a programmed physical joystick to manipulate the viewing angle of the terrain. Showcased at a school art event, the project garnered critical acclaim, particularly from the school's Principal and President. The positive reception played a pivotal role in securing a scholarship from the President.
SIERPINSKI’S TRIANGLE
This project generates a mathematical design known as the Sierpinski Triangle, named after the Polish mathematician Waclaw Franciszek Sierpinski. The design starts with an equilateral triangle, which is recursively subdivided into smaller equilateral triangles.
The program prompts the user to place a point within the triangle. Then, the program randomly selects one of the triangle's vertices and draws a new point halfway between the user's point and the chosen vertex. This process iterates continuously, with each new point serving as a reference for the next, as the program randomly selects a vertex and draws a point between the last added point and the selected vertex.