-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdisplay_RGB_QC.py
38 lines (31 loc) · 1.03 KB
/
display_RGB_QC.py
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
# -*- coding: utf-8 -*-
"""
Éditeur de Spyder
Ceci est un script temporaire.
"""
import numpy as np
import pandas as pd
import librosa
import os
import pywt
import cv2 as cvlib
from args import parser
import matplotlib.pyplot as plt
RGB_sound=np.load("/Users/vincentbelz/Documents/Data/audio_classification/audio_images/RGB_sound.npy")
y_label_sound=np.load("/Users/vincentbelz/Documents/Data/audio_classification/audio_images/y_label_sound.npy")
y_label_hot_sound=np.load("/Users/vincentbelz/Documents/Data/audio_classification/audio_images/y_label_hot_sound.npy")
print(RGB_sound.shape)
print(y_label_sound[1199,:])
print(y_label_hot_sound[1199,:])
plt.figure()
plt.axis('off')
plt.imshow(RGB_sound[1199,:,:,0], cmap='Reds', interpolation='nearest', aspect='auto')
plt.show()
plt.figure()
plt.axis('off')
plt.imshow(RGB_sound[1199,:,:,1], cmap='Greens', interpolation='nearest', aspect='auto')
plt.show()
plt.figure()
plt.axis('off')
plt.imshow(RGB_sound[1199,:,:,2],clim=(-0.2, 0.2), cmap='Blues', interpolation='nearest', aspect='auto')
plt.show()