summaryrefslogtreecommitdiff
path: root/openCVTools.py
blob: d808dea6060b803e825f67c40b3c01030ac9cddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import cv2 as cv
import sys
import numpy as np
import matplotlib.pyplot as plt


def safeLoad(pathToFile):
    '''
    OpenCV does no validation checks due to performance reasons.
    Therefore, this function checks if the image could be loaded
    '''
    img = cv.imread(pathToFile)
    if img is None:
        sys.exit("Image could not be loaded.")
    return img


# TODO Aufgabe 1
'''
Passen Sie die Funktion `imageStats(..)` so an, dass sie sowohl Grau- als auch Farbbilder korrekt anzeigt.
Erweitern Sie die Funktion zusätzlich so dass der Datentyp mit ausgegeben wird.
'''
def imageStats(img):
    '''
    Returns a few image statistics
    '''
    s = img.shape
    return "Width: {}, Height: {}, Channels: {}, Type: {}".format(s[1], s[0], s[2] if len(s) >= 3 else 1, img[0][0][0].dtype if len(s) >= 3 else img[0][0].dtype)



# TODO Aufgabe 1
'''
Passen Sie die Funktion `showImage(..)` so an, dass sie sowohl Grau- als auch Farbbilder korrekt anzeigt.
'''
def showImage(title, originalImg):
    print(imageStats(originalImg))

    img = originalImg.copy()
    plt.figure(title)
    if len(img.shape) >= 3:
        img = img[:,:,::-1]
        plt.imshow(img)
    else:
        plt.imshow(img, cmap="gray")
    plt.show()