-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from PIL import Image | ||
|
||
from app.Models.img_data import ImageData | ||
from app.Services import TransformersService | ||
from app.Services.ocr_services import OCRService | ||
|
||
|
||
class IndexService: | ||
def __init__(self, ocr_service: OCRService, transformers_service: TransformersService): | ||
self._ocr_service = ocr_service | ||
self._transformers_service = transformers_service | ||
|
||
def _calculate_vectors(self): | ||
pass | ||
|
||
def index_image(self, image: Image.Image, image_data: ImageData): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Requirements for development and testing | ||
|
||
pytest | ||
pylint |