Skip to content

Commit

Permalink
ruff checked
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkoklukas committed Aug 22, 2024
1 parent bc41929 commit af8203c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/b3d/chisight/sfm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .epipolar import *
from .eight_point import *
from .epipolar import *

5 changes: 3 additions & 2 deletions src/b3d/chisight/sfm/eight_point.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,14 @@
ps = poses_from_essential(E)
```
"""
from typing import Tuple

import jax
from jax import numpy as jnp

import b3d.camera as camera
from b3d.pose import Pose
from b3d.types import Array, Int, Matrix3x3, Matrix3x4, Point3D
from typing import Tuple


def cross_product_matrix(a) -> Matrix3x3:
"""
Expand Down

0 comments on commit af8203c

Please sign in to comment.