summaryrefslogtreecommitdiff
path: root/main_simple_scanner.cpp
diff options
context:
space:
mode:
authorKeuin <[email protected]>2022-04-12 14:04:15 +0800
committerKeuin <[email protected]>2022-04-12 14:04:15 +0800
commitbb1ce1b496822fa4f97d57f607ec0b98a32182cd (patch)
treed48f26be9d83c07329c9a2afd57e829c14aee3ee /main_simple_scanner.cpp
parent73473e772058c223deb0e8a70be3abd84fa0a9a4 (diff)
Caption printing is configurable as a cli parameter.
Diffstat (limited to 'main_simple_scanner.cpp')
-rw-r--r--main_simple_scanner.cpp23
1 files changed, 17 insertions, 6 deletions
diff --git a/main_simple_scanner.cpp b/main_simple_scanner.cpp
index 13154e5..60f514a 100644
--- a/main_simple_scanner.cpp
+++ b/main_simple_scanner.cpp
@@ -169,7 +169,7 @@ public:
};
void generate_image(uint16_t image_width, uint16_t image_height, double viewport_width, double focal_length,
- double sphere_z, double sphere_r) {
+ double sphere_z, double sphere_r, const std::string &caption = "", unsigned caption_scale = 1) {
double r = 1.0 * image_width / image_height;
viewport vp{viewport_width, viewport_width / r, vec3d{0, 0, -focal_length}};
vp.add_object(std::make_shared<sphere>(
@@ -178,8 +178,13 @@ void generate_image(uint16_t image_width, uint16_t image_height, double viewport
vp.add_object(std::make_shared<sphere>(vec3d{0, 0, sphere_z}, sphere_r));
timer tm;
tm.start_measure();
- const auto image = vp.render(vec3d::zero(), image_width, image_height); // camera position as the coordinate origin
+ auto image = vp.render(vec3d::zero(), image_width, image_height); // camera position as the coordinate origin
tm.stop_measure();
+ if (!caption.empty()) {
+ image.print(caption,
+ pixel8b::from_normalized(1.0, 0.0, 0.0),
+ 10, 10, caption_scale, 0.8);
+ }
if (!std::getenv("NOPRINT")) {
image.write_plain_ppm(std::cout);
} else {
@@ -188,13 +193,19 @@ void generate_image(uint16_t image_width, uint16_t image_height, double viewport
}
int main(int argc, char **argv) {
- if (argc != 7) {
+ if (argc != 7 && argc != 8) {
printf("Usage: %s <image_width> <image_height> <viewport_width> <focal_length> <sphere_z> <sphere_r>\n",
argv[0]);
return 0;
}
- std::string iw{argv[1]}, ih{argv[2]}, vw{argv[3]}, fl{argv[4]}, sz{argv[5]}, sr{argv[6]};
- generate_image(std::stoul(iw), std::stoul(ih),
+ std::string iw{argv[1]}, ih{argv[2]}, vw{argv[3]}, fl{argv[4]}, sz{argv[5]}, sr{argv[6]}, cap{};
+ if (argc == 8) {
+ // with caption
+ cap = std::string{argv[7]};
+ }
+ const auto image_width = std::stoul(iw);
+ generate_image(image_width, std::stoul(ih),
std::stod(vw), std::stod(fl),
- std::stod(sz), std::stod(sr));
+ std::stod(sz), std::stod(sr), cap,
+ (int)(1.0 * image_width * 0.015 / 8));
} \ No newline at end of file