Skip to content

Commit

Permalink
commenting larger photos
Browse files Browse the repository at this point in the history
  • Loading branch information
Golem211 committed Feb 13, 2024
1 parent ccc097e commit bcf18fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Binary file modified bin/test/MyMain.class
Binary file not shown.
12 changes: 6 additions & 6 deletions src/test/MyMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ public static void main(String[] args) {
// Creez BMPreader threads
BMPReader readerThread1 = new BMPReader(buffer, "inImages/Lenabmp.bmp");
BMPReader readerThread2 = new BMPReader(buffer, "inImages/image2.bmp");
BMPReader readerThread3 = new BMPReader(buffer, "inImages/image3.bmp");
BMPReader readerThread4 = new BMPReader(buffer, "inImages/image4.bmp");
//BMPReader readerThread3 = new BMPReader(buffer, "inImages/image3.bmp");
//BMPReader readerThread4 = new BMPReader(buffer, "inImages/image4.bmp");
BMPReader readerThread5 = new BMPReader(buffer, "inImages/image5.bmp");
///sasada
//creez thredul de procesare
Expand All @@ -20,8 +20,8 @@ public static void main(String[] args) {
// pornesc toate threadurile
readerThread1.start();
readerThread2.start();
readerThread3.start();
readerThread4.start();
//readerThread3.start();
//readerThread4.start();
readerThread5.start();
processorThread.start();

Expand All @@ -30,8 +30,8 @@ public static void main(String[] args) {

readerThread1.join();
readerThread2.join();
readerThread3.join();
readerThread4.join();
//readerThread3.join();
//readerThread4.join();
readerThread5.join();


Expand Down

0 comments on commit bcf18fb

Please sign in to comment.