Browse Source

project structure push

master
caliskan 1 year ago
parent
commit
bac84033bd

+ 7
- 0
idea.txt View File

@@ -0,0 +1,7 @@
create a userinterface, on which the answers for the questions are displayed
create a data base to store questions and possible answers
create a module to detect colors and position of a image, which will be shooted by a camera connected to the computer
we must determine and provide area in which the answer options are defined (tape on ground) -> Boden abkleben

tasks:
- get camera

+ 0
- 0
requirements.txt View File


+ 0
- 0
src_folder/Object-Detection/detect.py View File


+ 0
- 0
src_folder/UI_and_DB/database.py View File


+ 18
- 0
src_folder/UI_and_DB/ui.py View File

@@ -0,0 +1,18 @@
import tkinter as tk

def button_callback():
print("Button was clicked")

# Create the main window
window = tk.Tk()

# Add a label to the window
label = tk.Label(text="Hello, World!")
label.pack()

# Add a button to the window
button = tk.Button(text="Click me!", command=button_callback)
button.pack()

# Run the main loop to display the window
window.mainloop()

Loading…
Cancel
Save