Skip to content

Commit

Permalink
Reorganize module structure a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
jonchang committed Oct 25, 2024
1 parent d4efa3d commit f8c8b7c
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import numpy as np

from ocr.services.alignment import ImageHomography
from ocr.services.alignment.backends import ImageHomography


class ImageAligner:
Expand Down
4 changes: 2 additions & 2 deletions OCR/tests/alignment_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import numpy as np
import pytest

from ocr.services.alignment import FourPointTransform, ImageHomography, RandomPerspectiveTransform
from ocr.services.image_alignment import ImageAligner
from ocr.services.alignment.backends import FourPointTransform, ImageHomography, RandomPerspectiveTransform
from ocr.services.alignment import ImageAligner


path = os.path.dirname(__file__)
Expand Down

0 comments on commit f8c8b7c

Please sign in to comment.