2022-05-26 12:14:36 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
|
|
import asyncio
|
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
import datetime
|
2022-06-07 12:50:40 +00:00
|
|
|
from PIL import Image
|
2022-05-26 12:14:36 +00:00
|
|
|
import json
|
2022-06-03 07:49:59 +00:00
|
|
|
from multiprocessing import Pool
|
2022-05-27 22:30:15 +00:00
|
|
|
import random
|
2022-05-26 12:14:36 +00:00
|
|
|
import time
|
2022-05-29 10:08:56 +00:00
|
|
|
import matplotlib
|
|
|
|
|
from matplotlib import pyplot as plt
|
|
|
|
|
import numpy as np
|
2022-05-26 12:14:36 +00:00
|
|
|
|
|
|
|
|
import websockets
|
2022-05-29 10:08:56 +00:00
|
|
|
import cv2
|
2022-05-31 16:29:44 +00:00
|
|
|
import matplotlib.image as mpimg
|
|
|
|
|
|
2022-05-26 12:14:36 +00:00
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
|
class pixel:
|
|
|
|
|
x: int
|
|
|
|
|
y: int
|
|
|
|
|
color: int
|
|
|
|
|
timestamp: int
|
|
|
|
|
userid: int
|
|
|
|
|
|
2022-06-07 12:50:40 +00:00
|
|
|
def hex_to_rgb(h):
|
|
|
|
|
return tuple(int(h[i:i+2], 16) for i in (0, 2, 4))
|
|
|
|
|
|
|
|
|
|
hex_colors = [
|
|
|
|
|
"#FFFFFF",
|
|
|
|
|
"#E4E4E4",
|
|
|
|
|
"#888888",
|
|
|
|
|
"#222222",
|
|
|
|
|
"#FFA7D1",
|
|
|
|
|
"#E50000",
|
|
|
|
|
"#E59500",
|
|
|
|
|
"#A06A42",
|
|
|
|
|
"#E5D900",
|
|
|
|
|
"#94E044",
|
|
|
|
|
"#02BE01",
|
|
|
|
|
"#00D3DD",
|
|
|
|
|
"#0083C7",
|
|
|
|
|
"#0000EA",
|
|
|
|
|
"#CF6EE4",
|
|
|
|
|
"#820080"
|
|
|
|
|
]
|
|
|
|
|
rgb_colors = [hex_to_rgb(h[1:]) for h in hex_colors]
|
|
|
|
|
|
|
|
|
|
def eucleadian_distance(rgb1, rgb2):
|
|
|
|
|
if len(rgb1) != len(rgb2):
|
|
|
|
|
raise ValueError
|
|
|
|
|
sum_part = np.sum([(rgb1[i]-rgb2[i])**2 for i in range(len(rgb1))])
|
|
|
|
|
# return np.sqrt(sum_part) # technically correct, but we only care about rank not exact distance and sqrt is expensive
|
|
|
|
|
return sum_part
|
|
|
|
|
|
|
|
|
|
def closest_match(rgb, color_map):
|
|
|
|
|
return min(range(len(rgb_colors)), key=lambda i: eucleadian_distance(rgb, color_map[i]))
|
|
|
|
|
|
2022-05-31 16:29:44 +00:00
|
|
|
async def sender(img):
|
2022-06-19 13:05:12 +00:00
|
|
|
async with websockets.connect("ws://localhost:8080/set", timeout=60) as websocket:
|
2022-06-12 15:05:04 +00:00
|
|
|
|
2022-05-28 14:12:56 +00:00
|
|
|
while True:
|
2022-05-31 16:29:44 +00:00
|
|
|
rx = random.randint(0, 999)
|
|
|
|
|
ry = random.randint(0, 999)
|
2022-05-27 22:30:15 +00:00
|
|
|
message = pixel(
|
2022-05-31 16:29:44 +00:00
|
|
|
x=rx,
|
|
|
|
|
y=ry,
|
2022-06-07 12:50:40 +00:00
|
|
|
color= closest_match(img[rx][ry], rgb_colors),
|
2022-05-27 22:30:15 +00:00
|
|
|
timestamp=int(time.time()),
|
|
|
|
|
userid=1,
|
|
|
|
|
)
|
|
|
|
|
await websocket.send(json.dumps(message.__dict__))
|
2022-05-31 14:15:09 +00:00
|
|
|
succ = await websocket.recv()
|
2022-06-12 15:05:04 +00:00
|
|
|
if succ != "0":
|
2022-05-31 14:15:09 +00:00
|
|
|
print(message, "was not set")
|
2022-05-29 09:34:43 +00:00
|
|
|
|
2022-06-05 13:44:28 +00:00
|
|
|
|
2022-05-28 14:12:56 +00:00
|
|
|
|
|
|
|
|
async def client():
|
2022-05-31 14:15:09 +00:00
|
|
|
image = np.zeros(shape=[1000, 1000, 3], dtype=np.uint8)
|
2022-05-29 09:34:43 +00:00
|
|
|
async with websockets.connect("ws://localhost:8080/get") as websocket:
|
2022-05-28 14:12:56 +00:00
|
|
|
i= 0
|
2022-05-27 22:30:15 +00:00
|
|
|
while True:
|
2022-05-28 14:12:56 +00:00
|
|
|
i+=1
|
2022-05-29 10:08:56 +00:00
|
|
|
x = pixel(**json.loads(await websocket.recv()))
|
2022-06-07 12:50:40 +00:00
|
|
|
image[x.x][x.y] = rgb_colors[x.color]
|
2022-05-31 14:15:09 +00:00
|
|
|
await websocket.send("1")
|
2022-05-26 12:14:36 +00:00
|
|
|
|
2022-05-28 14:12:56 +00:00
|
|
|
async def main():
|
2022-06-19 13:05:12 +00:00
|
|
|
img= Image.open('./python/images/3.jpg')
|
2022-06-07 12:50:40 +00:00
|
|
|
img= img.resize((1000, 1000), Image.ANTIALIAS)
|
|
|
|
|
img = np.array(img)
|
2022-06-03 07:49:59 +00:00
|
|
|
coros = [sender(img) for _ in range(100)]
|
2022-06-12 15:05:04 +00:00
|
|
|
_ = await asyncio.gather(*coros)
|
2022-05-29 09:34:43 +00:00
|
|
|
|
2022-06-04 21:25:25 +00:00
|
|
|
def asyncMain(x):
|
2022-06-03 07:49:59 +00:00
|
|
|
asyncio.get_event_loop().run_until_complete(main())
|
2022-05-26 12:14:36 +00:00
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2022-06-12 15:05:04 +00:00
|
|
|
#with Pool(12) as p:
|
|
|
|
|
# print(p.map(asyncMain, [() for _ in range(12)]))
|
|
|
|
|
asyncMain(0)
|