High-Level Project Summary
Our project is to help astronauts using artificial intelligence. All is a vital component for space trips and space exploration.it helps in conducting tasks that humans would otherwise be unable to perform in space such as analysing cosmic occurences, system control,charting stars and black holes.ISRO employes artificial neural networks and deep learning algorithms to classify ,forecast ,identify crop/forecastspecies, and anaylse remote sensing and time seriesdata.
Link to Final Project
Link to Project "Demo"
Detailed Project Description
Using artificial intelligence we implement a robot algorithm. We develop a program that how to prepare a robot. the challenges faced by astronaut we want send a robot into the sarelitte using artificial intelligence soo we implement natural processing into the machines. Ore idea is to implement natural processing into the machines and the robots have to go to space.so robots place vital role in the space journey
Space Agency Data
// C program for the above approach
#include <conio.h>
#include <graphics.h>
#include <stdio.h>
// Driver Code
void main()
{
// Initialize of gdriver with
// DETECT macros
initgraph(&gd, &gm, "C:\\turboc3\\bgi");
setfillstyle(SOLID_FILL, BROWN);
rectangle(650, 450, 700, 650);
// Rocket body
floodfill(652, 648, 15);
line(0, 650, 1500, 650);
// Land outline
setfillstyle(SOLID_FILL, WHITE);
line(650, 450, 700, 450);
line(650, 450, 675, 350);
line(675, 350, 700, 450);
// Rocket head
floodfill(652, 448, 15);
setfillstyle(SOLID_FILL, BLUE);
line(650, 500, 650, 450);
line(625, 500, 650, 500);
line(625, 500, 650, 450);
// Rocket left up wing
floodfill(648, 498, 15);
setfillstyle(SOLID_FILL, BLUE);
line(700, 450, 700, 500);
line(725, 500, 700, 500);
line(700, 450, 725, 500);
// Rocket right up wing
floodfill(702, 498, 15);
setfillstyle(SOLID_FILL, BLUE);
line(625, 650, 650, 650);
line(650, 575, 650, 650);
line(625, 650, 650, 575);
// Rocket left down wing
floodfill(627, 648, 15);
setfillstyle(SOLID_FILL, GREEN);
floodfill(627, 698, 15);
setfillstyle(SOLID_FILL, BLUE);
line(725, 650, 700, 650);
line(700, 575, 700, 650);
line(725, 650, 700, 575);
// Rocket right down wing
floodfill(702, 648, 15);
line(0, 650, 1500, 650);
// Draw the land with green color
setfillstyle(SOLID_FILL, GREEN);
floodfill(627, 698, 15);
getch();
// Close the initialized gdriver
Hackathon Journey
// we develop a program to create a rocket
#Include<stdio.h>
//Giving some delay
void delay( unsigned int value)
{
unsigned int count1 =0;
unsigned int count2 = 0;
for(count1 = 0; count1 < value ; count1++ )
{
for(count2 = 0; count2 < count1 ; count2++ )
{
}
}
}
// string to display Rocket
const char rocket[] =
" ^ \n\
/^\\\n\
|-|\n\
| |\n\
|I|\n\
|S|\n\
|R|\n\
|O|\n\
/| |\\\n\
/ | | \\\n\
| | | |\n\
`-\"\"\"-`\n\
";
int main()
{
int jumpControlAtBottom = 0;
const int someDelay = 6000;
int shifControl = 0;
//jump to bottom of console
for (jumpControlAtBottom = 0; jumpControlAtBottom < 30; ++jumpControlAtBottom)
{
printf("\n");
}
//Print rocket
fputs(rocket,stdout);
for (shifControl = 0; shifControl < 30; ++shifControl)
{
// Rocket move on the basis of delay
delay(someDelay);
// move rocket a line upward
printf("\n");
}
return 0;
}
References
Google, youtube
Tags
#software, #robot,#space,#AI

