Giter VIP home page Giter VIP logo

Comments (2)

KelSolaar avatar KelSolaar commented on June 8, 2024

Hi @harshjain30,

I think you are seeing precision issues here possibly, I get and intersection in both cases for example on my macBook M1.

From a mathematical standpoint, yes the two points are in the same set so you could consider that they intersect but getting to that result with IEE754 floating point arithmetics is probably too much asking!

image

The following all intersect for me:

import colour
import matplotlib.pyplot as plt
import numpy as np

l_1 = np.array(
    [
        [[325, 421], [0, 0]],
    ]
)
l_2 = np.array(
    [
        [[0, 1023], [0, 0]],
    ]
)

l_3 = np.array(
    [
        [[0, 0], [325, 421]],
    ]
)
l_4 = np.array(
    [
        [[0, 1023], [0, 0]],
    ]
)

print(colour.geometry.intersect_line_segments(l_1, l_2))
print(colour.geometry.intersect_line_segments(l_3, l_4))

plt.plot(l_1[0][..., 0], l_1[0][..., 1])
plt.plot(l_2[0][..., 0], l_2[0][..., 1])

plt.show()

l_1 = np.array(
    [
        [[-1, 0], [1, 0]],
    ]
)
l_2 = np.array(
    [
        [[0, -1], [0, 1]],
    ]
)

l_3 = np.array(
    [
        [[1, 0], [-1, 0]],
    ]
)
l_4 = np.array(
    [
        [[0, 1023], [0, 0]],
    ]
)

print(colour.geometry.intersect_line_segments(l_1, l_2))
print(colour.geometry.intersect_line_segments(l_3, l_4))

plt.plot(l_1[0][..., 0], l_1[0][..., 1])
plt.plot(l_2[0][..., 0], l_2[0][..., 1])
plt.show()
LineSegmentsIntersections_Specification(xy=array([[[ 0.,  0.]]]), intersect=array([[ True]], dtype=bool), parallel=array([[False]], dtype=bool), coincident=array([[False]], dtype=bool))
LineSegmentsIntersections_Specification(xy=array([[[ 0.,  0.]]]), intersect=array([[ True]], dtype=bool), parallel=array([[False]], dtype=bool), coincident=array([[False]], dtype=bool))
LineSegmentsIntersections_Specification(xy=array([[[ 0.,  0.]]]), intersect=array([[ True]], dtype=bool), parallel=array([[False]], dtype=bool), coincident=array([[False]], dtype=bool))
LineSegmentsIntersections_Specification(xy=array([[[ 0.,  0.]]]), intersect=array([[ True]], dtype=bool), parallel=array([[False]], dtype=bool), coincident=array([[False]], dtype=bool))

image

from colour.

harshjain30 avatar harshjain30 commented on June 8, 2024

I had a feeling that might be the case. Thanks for looking into it.

from colour.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.