libtuning: Fix imports
Fix imports to match new structure in the files copied from Raspberry Pi. Add missing imports in macbeth.py. Add missing dependencies to requirements.txt. Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
This commit is contained in:
parent
388fe3bcf9
commit
b1f3b3f08d
4 changed files with 18 additions and 6 deletions
|
@ -1,6 +1,7 @@
|
|||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
# Copyright (C) 2024, Ideas on Board Oy
|
||||
#
|
||||
# Locate and extract Macbeth charts from images
|
||||
# (Copied from: ctt_macbeth_locator.py)
|
||||
|
@ -11,6 +12,10 @@ import cv2
|
|||
import os
|
||||
from pathlib import Path
|
||||
import numpy as np
|
||||
import warnings
|
||||
from sklearn import cluster as cluster
|
||||
|
||||
from .ctt_ransac import get_square_verts, get_square_centres
|
||||
|
||||
from libtuning.image import Image
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue