project structure push
This commit is contained in:
parent
6ece145293
commit
bac84033bd
7
idea.txt
Normal file
7
idea.txt
Normal 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
requirements.txt
Normal file
0
requirements.txt
Normal file
0
src_folder/Object-Detection/detect.py
Normal file
0
src_folder/Object-Detection/detect.py
Normal file
0
src_folder/UI_and_DB/database.py
Normal file
0
src_folder/UI_and_DB/database.py
Normal file
18
src_folder/UI_and_DB/ui.py
Normal file
18
src_folder/UI_and_DB/ui.py
Normal 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…
x
Reference in New Issue
Block a user