|
@@ -22,7 +22,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
22
|
22
|
new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_O), this, SLOT(on_btnLoadImages_clicked()));
|
23
|
23
|
///
|
24
|
24
|
/// Removes noise from a image with cmd + r
|
25
|
|
- /// Remueve el ruido de una imagen con cmd + r
|
|
25
|
+ /// Elimina el ruido de una imagen con cmd + r
|
26
|
26
|
new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_R), this, SLOT(on_btnRemoveNoise_clicked()));
|
27
|
27
|
///
|
28
|
28
|
/// Saves an image without noise with cmd + s
|
|
@@ -55,7 +55,7 @@ void MainWindow::loadImages(vector<QImage> & images, QString path){
|
55
|
55
|
// Guarda la informacion de el proximo archivo a revisar
|
56
|
56
|
|
57
|
57
|
// String to store the path of the current file being checked
|
58
|
|
- // Cadena para guardar el camino del archivo actual a revisar
|
|
58
|
+ // Cadena para guardar el camino del archivo actual en revisión
|
59
|
59
|
QString filePath;
|
60
|
60
|
|
61
|
61
|
// String to store the name of the current file being checked
|
|
@@ -64,11 +64,11 @@ void MainWindow::loadImages(vector<QImage> & images, QString path){
|
64
|
64
|
|
65
|
65
|
for(int i = 0; i < list.size(); i++){
|
66
|
66
|
fileInfo = list.at(i); // Get the file info at possition i
|
67
|
|
- // Obtiene el la informacion del archivo en posicion i
|
|
67
|
+ // Obtiene la informacion del archivo en posicion i
|
68
|
68
|
filePath = fileInfo.filePath(); // Get the file path
|
69
|
69
|
// Obtiene el camino al archivo
|
70
|
70
|
fileName = fileInfo.fileName(); // Get the file name
|
71
|
|
- // Obtiene el nombre el archivo
|
|
71
|
+ // Obtiene el nombre del archivo
|
72
|
72
|
|
73
|
73
|
QImage image(filePath); // Load the file as an image
|
74
|
74
|
// Carga el archivo como una imagen
|
|
@@ -78,7 +78,7 @@ void MainWindow::loadImages(vector<QImage> & images, QString path){
|
78
|
78
|
if(image.isNull())
|
79
|
79
|
continue;
|
80
|
80
|
// Add the image to the image_value vector
|
81
|
|
- // Anade la imagen a el vector de imagenes.
|
|
81
|
+ // Anade la imagen al vector de imagenes.
|
82
|
82
|
else
|
83
|
83
|
images.push_back(image) ;
|
84
|
84
|
}
|
|
@@ -116,7 +116,7 @@ void MainWindow::on_btnLoadImages_clicked(){
|
116
|
116
|
loadImages(images, directory);
|
117
|
117
|
|
118
|
118
|
// Setting the image labels with the orinal images
|
119
|
|
- // Ajusta la imageen a las etiquetas.
|
|
119
|
+ // Ajusta la imagen a las etiquetas.
|
120
|
120
|
|
121
|
121
|
if(images.empty()){
|
122
|
122
|
QMessageBox::information(this,"title goes here","Directory doesn't contain images");
|