New Post

Python Code || Path Planning with Grey Wolf Optimization (GWO) ~xRay Pixy

Image
Learn how to implement an obstacle-avoiding path planning for a robot using the Grey Wolf Optimization (GWO) in a static environment. #optimization #algorithm #metaheuristic #robotics #deeplearning #ArtificialIntelligence #MachineLearning #computervision #research #projects #thesis #Python

PYTHON TURTLE GRAPHICS DESIGNS || Geometric Art || ~xRay Pixy

PYTHON TURTLE GRAPHICS DESIGNS


SOURCE CODE FOR SPIRAL HEXAGON

import turtle
colors = ['red','yellow','blue','green','white','orange','silver','pink']
s = turtle.Pen()
turtle.bgcolor('black')
for i in range (250):
    s.pencolor(colors [i % 6])
    s.width(i/100 +1)
    s.forward(i)
    s.left(50)

OUTPUT







Comments

Popular Post

PARTICLE SWARM OPTIMIZATION ALGORITHM NUMERICAL EXAMPLE

Cuckoo Search Algorithm for Optimization Problems

Particle Swarm Optimization (PSO)

PSO (Particle Swarm Optimization) Example Step-by-Step

how is the LBP |Local Binary Pattern| values calculated? Step-by-Step with Example

PSO Python Code || Particle Swarm Optimization in Python || ~xRay Pixy

Bat algorithm Explanation Step by Step with example

Grey Wolf Optimization Algorithm

Grey Wolf Optimization Algorithm Numerical Example

Whale Optimization Algorithm Code Implementation || WOA CODE || ~xRay Pixy