| 71 | void set_denoise(float level) { m_denoise = level; } |
| 72 | void set_wait_images(float seconds) { m_wait_images = seconds; } |
| 73 | void set_align_flags(int flags) { m_align_flags = static_cast<align_flags_t>(flags); } |
| 74 | void set_3dviewpoint(float x, float y, float z, float zscale) { m_3dviewpoint = cv::Vec3f(x,y,z); m_3dzscale = zscale; } |
| 75 | void set_3dviewpoint(std::string value) { |
| 76 | std::istringstream is(value); |