-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
19 lines (14 loc) · 816 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# HIII
def print_hi(name):
print(f'Hi, {name}') # Press Ctrl+F8 to toggle the breakpoint.
print("i am Prasham Soni currently a Instrumentation and Control Student at Nirma University " )
print("This project might help people working with Aruco marker and not able to find a repo that works...:) ")
print("This project Consists Python code that help in Computer Vision and Image Processing ")
print("if You are working with Aruco :) you would find this project useful to find the distance between the aruco markers and "
"estimate the pose after caibrrating the camera ")
print("do follow if you find it useful")
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
name1 = input("Enter Your Name")
print_hi(name1)
#