-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.py
91 lines (77 loc) · 2.48 KB
/
common.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# -*- coding: utf-8 -*-
"""
Created on Thu Dec 12 18:58:05 2024
@author: Admin
"""
import numpy as np
import matplotlib.pyplot as plt
def bornage(h, w, p): # à voir si une accélération est possible
p=list(p)
if p[0] < 0:
p[0] = 0
if p[0] > h:
p[0] = h-1
if p[1] < 0:
p[1] = 0
if p[1] > w:
p[1] = w-1
return p
def bornage2(h,w,ray):
# unused for now
ray=np.array(ray)
return [bornage(h,w,ray[0]),bornage(h,w,ray[1])]
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Fonctions tracé de rayons ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# %%
# ajouter des paramètres pour avoir un tirage gaussien (ou autre)
def ray_center(center,length,angle):
"""
Parameters
----------
center : np.array([x0,y0])
length : float
angle : float
crée un rayon de centre center, de longueur length et d'angle alpha (par rapport à l'horizontale)
"""
offset = np.array([np.cos(angle), np.sin(angle)])*length/2
x1 = center+offset
x2 = center-offset
return np.array([x1,x2])
def random_ray_center(h, w, length):
# méthode: centre, angle, longueur
angle = np.random.uniform(0, 2*np.pi)
r = length/2
center = np.array([np.random.randint(0, h), np.random.randint(0, w)])
offset = np.array([np.cos(angle), np.sin(angle)])*r
x1 = center+offset
x2 = center-offset
return np.int32([bornage(h, w, x1), bornage(h, w, x2)])
def random_ray_center_2(h, w, length,center):
# méthode: centre, angle, longueur
angle = np.random.uniform(0, 2*np.pi)
r = length/2
offset = np.array([np.cos(angle), np.sin(angle)])*r
x1 = center+offset
x2 = center-offset
return np.int32([bornage(h, w, x1), bornage(h, w, x2)])
def random_ray(h, w, length):
# méthode: extrémité1, angle, longueur
angle = np.random.uniform(0, 2*np.pi)
x1 = np.array([np.random.randint(0, h), np.random.randint(0, w)])
offset = np.array([np.cos(angle), np.sin(angle)])*length
x2 = x1+offset
return np.int32([bornage(h, w, x1), bornage(h, w, x2)])
def plot_ray(ray):
# for debugging
plt.figure()
plt.plot(ray[:,0],ray[:,1])
k=5
plt.plot(k * np.array([1, 1, -1, -1, 1]), k * np.array([1, -1, -1, 1, 1]))
plt.grid()
return
def get_angle(ray):
ray=np.array(ray)
print(ray)
axe=np.abs(ray[:,1]-ray[:,0]) #abs pour être sûr d'extraire l'angle avec l'horizontale
axe_norm=axe/np.linalg.norm(axe,2)
alpha=np.arccos(axe_norm[0]) # on extrait l'angle avec l'horizontale
return alpha