Skip to content

Commit c86dc9e

Browse files
authored
Merge pull request #42 from wfus/bench
Bench
2 parents 92ee54c + b314eee commit c86dc9e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

homo/fhe_image.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,6 @@ void compare_jpeg_jojpeg(const char* original_image, const char* output_image, c
512512
uint8_t *jo_data = stbi_load(jo_image, &width, &height, &composition, 3);
513513
int running_error = 0;
514514
for (int i = 0; i < width * height * composition; i++) {
515-
std::cout << jo_data[i] << '\t' << output_data[i] << std::endl;
516515
running_error += (output_data[i] - jo_data[i]) * (output_data[i] - jo_data[i]);
517516
}
518517
double average_error = ((double) running_error) / (width * height * composition);

0 commit comments

Comments
 (0)