We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7116f22 commit 99cb442Copy full SHA for 99cb442
examples/cli/main.cpp
@@ -6,7 +6,7 @@
6
#include <string>
7
#include <vector>
8
9
-#include "preprocessing.hpp"
+// #include "preprocessing.hpp"
10
#include "stable-diffusion.h"
11
12
#define STB_IMAGE_IMPLEMENTATION
@@ -642,7 +642,6 @@ int main(int argc, const char* argv[]) {
642
3,
643
input_image_buffer};
644
if (params.canny_preprocess) { // apply preprocessor
645
- LOG_INFO("Applying canny preprocessor");
646
control_image->data = preprocess_canny(control_image->data,
647
control_image->width,
648
control_image->height,
util.cpp
@@ -10,6 +10,7 @@
#include <thread>
#include <unordered_set>
13
+#include "preprocessing.hpp"
14
15
#if defined(__APPLE__) && defined(__MACH__)
16
#include <sys/sysctl.h>
0 commit comments