Thanks to @Juancheeto i found the solution, leaving the code as reference
#######################
# Load and Show Image #
#######################
import matplotlib.pyplot as plt
from matplotlib.pyplot import figure
import cv2 as cv
from scipy.stats import linregress
from skimage import io
link = "https://i.imgur.com/WKiQZgj.jpeg"
a = io.imread(link)
a = cv.cvtColor(a, cv.COLOR_RGB2GRAY)
figure(figsize=(15,10), dpi = 75)
plt.imshow(a,cmap = "gray")
# Plotting line
#green
plt.axline([361, 229], [1051, 160], color = "green",zorder = 1)
#yellow
plt.axline([123, 75], [151, 115], color = "yellow", zorder = 2)
########################################################
# Finding intersection point For Green And Yellow Line #
########################################################
##############################
# Find slopes and intercepts #
##############################
# Line 1 [Yellow]
x_yellow = [123, 75]
y_yellow = [151, 115]
slope_yellow , intercept_yellow, r_value, p_value, std_err = linregress(x_yellow, y_yellow)
# Line 2 [Green]
x_green = [361, 229]
y_green = [1051, 160]
slope_green , intercept_green, r_value, p_value, std_err = linregress(x_green, y_green)
###########################
# Find X intersect point #
###########################
x = (intercept_green - intercept_yellow) / (slope_yellow - slope_green)
###########################
# Find Y intersect point #
###########################
y = ( slope_yellow * x ) + intercept_yellow
########################################
# Plotting intersection point #
########################################
# Intersection point
plt.scatter(x,y, marker = "x", color = "black", s = 75, zorder = 3)