Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 1 | #include <fstream> |
| 2 | |
| 3 | #include "aos/logging/implementations.h" |
| 4 | #include "aos/logging/logging.h" |
| 5 | #include "aos/vision/blob/codec.h" |
| 6 | #include "aos/vision/blob/find_blob.h" |
| 7 | #include "aos/vision/events/socket_types.h" |
| 8 | #include "aos/vision/events/udp.h" |
| 9 | #include "aos/vision/image/image_dataset.h" |
| 10 | #include "aos/vision/image/image_stream.h" |
| 11 | #include "aos/vision/image/reader.h" |
| 12 | #include "y2019/vision/target_finder.h" |
| 13 | |
| 14 | #undef CHECK_NOTNULL |
| 15 | #undef CHECK_OP |
| 16 | #undef PCHECK |
| 17 | // CERES Clashes with logging symbols... |
| 18 | #include "ceres/ceres.h" |
| 19 | |
Austin Schuh | e623f9f | 2019-03-03 12:24:03 -0800 | [diff] [blame] | 20 | DEFINE_int32(camera_id, -1, "The camera ID to calibrate"); |
Austin Schuh | 3b815f1 | 2019-03-08 20:10:37 -0800 | [diff] [blame] | 21 | DEFINE_string(prefix, "", "The image filename prefix"); |
Austin Schuh | e623f9f | 2019-03-03 12:24:03 -0800 | [diff] [blame] | 22 | |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 23 | using ::aos::events::DataSocket; |
| 24 | using ::aos::events::RXUdpSocket; |
| 25 | using ::aos::events::TCPServer; |
| 26 | using ::aos::vision::DataRef; |
| 27 | using ::aos::vision::Int32Codec; |
| 28 | using ::aos::monotonic_clock; |
| 29 | using aos::vision::Segment; |
| 30 | |
| 31 | using ceres::NumericDiffCostFunction; |
| 32 | using ceres::CENTRAL; |
| 33 | using ceres::CostFunction; |
| 34 | using ceres::Problem; |
| 35 | using ceres::Solver; |
| 36 | using ceres::Solve; |
| 37 | |
| 38 | namespace y2019 { |
| 39 | namespace vision { |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 40 | namespace { |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 41 | |
| 42 | constexpr double kInchesToMeters = 0.0254; |
| 43 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 44 | } // namespace |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 45 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 46 | ::std::array<double, 3> GetError(const DatasetInfo &info, |
| 47 | const double *const extrinsics, |
| 48 | const double *const geometry, int i) { |
| 49 | const ExtrinsicParams extrinsic_params = ExtrinsicParams::get(extrinsics); |
| 50 | const CameraGeometry geo = CameraGeometry::get(geometry); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 51 | |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 52 | const double s = sin(geo.heading + extrinsic_params.r2); |
| 53 | const double c = cos(geo.heading + extrinsic_params.r2); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 54 | |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 55 | // Take the tape measure starting point (this will be at the perimeter of the |
| 56 | // robot), add the offset to the first sample, and then add the per sample |
| 57 | // offset. |
Austin Schuh | 6cac52c | 2019-03-08 20:03:33 -0800 | [diff] [blame] | 58 | const double dx = (info.to_tape_measure_start[0] + |
| 59 | (info.beginning_tape_measure_reading + i) * |
| 60 | info.tape_measure_direction[0]) - |
| 61 | (geo.location[0] + c * extrinsic_params.z); |
| 62 | const double dy = (info.to_tape_measure_start[1] + |
| 63 | (info.beginning_tape_measure_reading + i) * |
| 64 | info.tape_measure_direction[1]) - |
| 65 | (geo.location[1] + s * extrinsic_params.z); |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 66 | |
Austin Schuh | 6cac52c | 2019-03-08 20:03:33 -0800 | [diff] [blame] | 67 | constexpr double kCalibrationTargetHeight = 28.5 * kInchesToMeters; |
| 68 | const double dz = |
| 69 | kCalibrationTargetHeight - (geo.location[2] + extrinsic_params.y); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 70 | return {{dx, dy, dz}}; |
| 71 | } |
| 72 | |
| 73 | void main(int argc, char **argv) { |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 74 | using namespace y2019::vision; |
Austin Schuh | 3b815f1 | 2019-03-08 20:10:37 -0800 | [diff] [blame] | 75 | ::gflags::ParseCommandLineFlags(&argc, &argv, false); |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 76 | |
| 77 | DatasetInfo info = { |
Austin Schuh | e623f9f | 2019-03-03 12:24:03 -0800 | [diff] [blame] | 78 | FLAGS_camera_id, |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 79 | {{12.5 * kInchesToMeters, 0.5 * kInchesToMeters}}, |
| 80 | {{kInchesToMeters, 0.0}}, |
| 81 | 26, |
Austin Schuh | 3b815f1 | 2019-03-08 20:10:37 -0800 | [diff] [blame] | 82 | FLAGS_prefix.c_str(), |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 83 | 59, |
| 84 | }; |
| 85 | |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 86 | ::aos::logging::Init(); |
| 87 | ::aos::logging::AddImplementation( |
| 88 | new ::aos::logging::StreamLogImplementation(stderr)); |
| 89 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 90 | TargetFinder target_finder; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 91 | |
| 92 | ceres::Problem problem; |
| 93 | |
| 94 | struct Sample { |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 95 | ::std::unique_ptr<double[]> extrinsics; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 96 | int i; |
| 97 | }; |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 98 | ::std::vector<Sample> all_extrinsics; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 99 | double intrinsics[IntrinsicParams::kNumParams]; |
| 100 | IntrinsicParams().set(&intrinsics[0]); |
| 101 | |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 102 | double geometry[CameraGeometry::kNumParams]; |
Austin Schuh | 9bb57fe | 2019-03-08 20:23:47 -0800 | [diff] [blame^] | 103 | { |
| 104 | // Assume the camera is near the center of the robot, and start by pointing |
| 105 | // it from the center of the robot to the location of the first target. |
| 106 | CameraGeometry camera_geometry; |
| 107 | const double x = |
| 108 | info.to_tape_measure_start[0] + |
| 109 | info.beginning_tape_measure_reading * info.tape_measure_direction[0]; |
| 110 | const double y = |
| 111 | info.to_tape_measure_start[1] + |
| 112 | info.beginning_tape_measure_reading * info.tape_measure_direction[1]; |
| 113 | camera_geometry.heading = ::std::atan2(y, x); |
| 114 | printf("Inital heading is %f\n", camera_geometry.heading); |
| 115 | camera_geometry.set(&geometry[0]); |
| 116 | } |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 117 | |
| 118 | Solver::Options options; |
| 119 | options.minimizer_progress_to_stdout = false; |
| 120 | Solver::Summary summary; |
| 121 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 122 | ::std::cout << summary.BriefReport() << "\n"; |
Austin Schuh | cacc692 | 2019-03-06 20:44:30 -0800 | [diff] [blame] | 123 | IntrinsicParams intrinsics_ = IntrinsicParams::get(&intrinsics[0]); |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 124 | ::std::cout << "rup = " << intrinsics_.mount_angle * 180 / M_PI << ";\n"; |
| 125 | ::std::cout << "fl = " << intrinsics_.focal_length << ";\n"; |
| 126 | ::std::cout << "error = " << summary.final_cost << ";\n"; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 127 | |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 128 | for (int i = 0; i < info.num_images; ++i) { |
Austin Schuh | 3b815f1 | 2019-03-08 20:10:37 -0800 | [diff] [blame] | 129 | ::aos::vision::DatasetFrame frame = |
| 130 | aos::vision::LoadFile(FLAGS_prefix + std::to_string(i) + ".yuyv"); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 131 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 132 | const ::aos::vision::ImageFormat fmt{640, 480}; |
| 133 | ::aos::vision::BlobList imgs = |
| 134 | ::aos::vision::FindBlobs(aos::vision::DoThresholdYUYV( |
Austin Schuh | 2851e7f | 2019-03-06 20:45:19 -0800 | [diff] [blame] | 135 | fmt, frame.data.data(), TargetFinder::GetThresholdValue())); |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 136 | target_finder.PreFilter(&imgs); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 137 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 138 | constexpr bool verbose = false; |
| 139 | ::std::vector<std::vector<Segment<2>>> raw_polys; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 140 | for (const RangeImage &blob : imgs) { |
Ben Fredrickson | f7b6852 | 2019-03-02 21:19:42 -0800 | [diff] [blame] | 141 | // Convert blobs to contours in the corrected space. |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 142 | ContourNode *contour = target_finder.GetContour(blob); |
| 143 | target_finder.UnWarpContour(contour); |
| 144 | const ::std::vector<Segment<2>> polygon = |
| 145 | target_finder.FillPolygon(contour, verbose); |
| 146 | if (!polygon.empty()) { |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 147 | raw_polys.push_back(polygon); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | // Calculate each component side of a possible target. |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 152 | const ::std::vector<TargetComponent> target_component_list = |
| 153 | target_finder.FillTargetComponentList(raw_polys); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 154 | |
| 155 | // Put the compenents together into targets. |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 156 | const ::std::vector<Target> target_list = |
| 157 | target_finder.FindTargetsFromComponents(target_component_list, verbose); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 158 | |
Austin Schuh | 0fd1cef | 2019-03-08 20:05:14 -0800 | [diff] [blame] | 159 | // Now, iterate over the targets (in pixel space). Generate a residual |
| 160 | // block for each valid target which compares the actual pixel locations |
| 161 | // with the expected pixel locations given the intrinsics and extrinsics. |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 162 | for (const Target &target : target_list) { |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 163 | const ::std::array<::aos::vision::Vector<2>, 8> target_value = |
Austin Schuh | 2894e90 | 2019-03-03 21:12:46 -0800 | [diff] [blame] | 164 | target.ToPointList(); |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 165 | const ::std::array<::aos::vision::Vector<2>, 8> template_value = |
| 166 | target_finder.GetTemplateTarget().ToPointList(); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 167 | |
Austin Schuh | 0fd1cef | 2019-03-08 20:05:14 -0800 | [diff] [blame] | 168 | all_extrinsics.push_back( |
| 169 | {::std::unique_ptr<double[]>(new double[ExtrinsicParams::kNumParams]), |
| 170 | i}); |
| 171 | double *extrinsics = all_extrinsics.back().extrinsics.get(); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 172 | ExtrinsicParams().set(extrinsics); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 173 | |
| 174 | for (size_t j = 0; j < 8; ++j) { |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 175 | // Template target in target space as documented by GetTemplateTarget() |
| 176 | const ::aos::vision::Vector<2> template_point = template_value[j]; |
| 177 | // Target in pixel space. |
| 178 | const ::aos::vision::Vector<2> target_point = target_value[j]; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 179 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 180 | // Now build up the residual block. |
| 181 | auto ftor = [template_point, target_point, i]( |
| 182 | const double *const intrinsics, const double *const extrinsics, |
| 183 | double *residual) { |
| 184 | const IntrinsicParams intrinsic_params = |
| 185 | IntrinsicParams::get(intrinsics); |
| 186 | const ExtrinsicParams extrinsic_params = |
| 187 | ExtrinsicParams::get(extrinsics); |
| 188 | // Project the target location into pixel coordinates. |
| 189 | const ::aos::vision::Vector<2> projected_point = |
| 190 | Project(template_point, intrinsic_params, extrinsic_params); |
| 191 | const ::aos::vision::Vector<2> residual_point = |
| 192 | target_point - projected_point; |
| 193 | residual[0] = residual_point.x(); |
| 194 | residual[1] = residual_point.y(); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 195 | return true; |
| 196 | }; |
| 197 | problem.AddResidualBlock( |
| 198 | new NumericDiffCostFunction<decltype(ftor), CENTRAL, 2, |
| 199 | IntrinsicParams::kNumParams, |
| 200 | ExtrinsicParams::kNumParams>( |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 201 | new decltype(ftor)(::std::move(ftor))), |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 202 | NULL, &intrinsics[0], extrinsics); |
| 203 | } |
| 204 | |
Austin Schuh | 6cac52c | 2019-03-08 20:03:33 -0800 | [diff] [blame] | 205 | // Now, compare the estimated location of the target that we just solved |
| 206 | // for with the extrinsic params above with the known location of the |
| 207 | // target. |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 208 | auto ftor = [&info, i](const double *const extrinsics, |
| 209 | const double *const geometry, double *residual) { |
Austin Schuh | 6cac52c | 2019-03-08 20:03:33 -0800 | [diff] [blame] | 210 | const ::std::array<double, 3> err = |
| 211 | GetError(info, extrinsics, geometry, i); |
| 212 | // We care a lot more about geometry than pixels. Especially since |
| 213 | // pixels are small and meters are big, so there's a small penalty to |
| 214 | // being off by meters. |
| 215 | residual[0] = err[0] * 1259.0; |
| 216 | residual[1] = err[1] * 1259.0; |
| 217 | residual[2] = err[2] * 1259.0; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 218 | return true; |
| 219 | }; |
| 220 | |
| 221 | problem.AddResidualBlock( |
| 222 | new NumericDiffCostFunction<decltype(ftor), CENTRAL, 3, |
| 223 | ExtrinsicParams::kNumParams, |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 224 | CameraGeometry::kNumParams>( |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 225 | new decltype(ftor)(::std::move(ftor))), |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 226 | NULL, extrinsics, &geometry[0]); |
| 227 | } |
| 228 | } |
| 229 | // TODO: Debug solver convergence? |
| 230 | Solve(options, &problem, &summary); |
| 231 | Solve(options, &problem, &summary); |
| 232 | Solve(options, &problem, &summary); |
| 233 | |
| 234 | { |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 235 | ::std::cout << summary.BriefReport() << ::std::endl; |
Austin Schuh | cacc692 | 2019-03-06 20:44:30 -0800 | [diff] [blame] | 236 | IntrinsicParams intrinsics_ = IntrinsicParams::get(&intrinsics[0]); |
| 237 | CameraGeometry geometry_ = CameraGeometry::get(&geometry[0]); |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 238 | ::std::cout << "rup = " << intrinsics_.mount_angle * 180 / M_PI << ";" |
| 239 | << ::std::endl; |
| 240 | ::std::cout << "fl = " << intrinsics_.focal_length << ";" << ::std::endl; |
| 241 | ::std::cout << "error = " << summary.final_cost << ";" << ::std::endl; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 242 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 243 | ::std::cout << "camera_angle = " << geometry_.heading * 180 / M_PI |
| 244 | << ::std::endl; |
| 245 | ::std::cout << "camera_x = " << geometry_.location[0] << ::std::endl; |
| 246 | ::std::cout << "camera_y = " << geometry_.location[1] << ::std::endl; |
| 247 | ::std::cout << "camera_z = " << geometry_.location[2] << ::std::endl; |
| 248 | ::std::cout << "camera_barrel = " << intrinsics_.barrel_mount * 180.0 / M_PI |
| 249 | << ::std::endl; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 250 | |
Austin Schuh | cacc692 | 2019-03-06 20:44:30 -0800 | [diff] [blame] | 251 | for (const Sample &sample : all_extrinsics) { |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 252 | const int i = sample.i; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 253 | double *data = sample.extrinsics.get(); |
| 254 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 255 | const ExtrinsicParams extrinsic_params = ExtrinsicParams::get(data); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 256 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 257 | const ::std::array<double, 3> error = |
| 258 | GetError(info, data, &geometry[0], i); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 259 | |
Austin Schuh | 4d6e9bd | 2019-03-08 19:54:17 -0800 | [diff] [blame] | 260 | ::std::cout << i << ", "; |
| 261 | ::std::cout << extrinsic_params.z << "m, "; |
| 262 | ::std::cout << extrinsic_params.y << "m, "; |
| 263 | ::std::cout << extrinsic_params.r1 * 180 / M_PI << ", "; |
| 264 | ::std::cout << extrinsic_params.r2 * 180 / M_PI << ", "; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 265 | // TODO: Methodology problem: This should really have a separate solve for |
| 266 | // extrinsics... |
Austin Schuh | 6cac52c | 2019-03-08 20:03:33 -0800 | [diff] [blame] | 267 | ::std::cout << error[0] << "m, "; |
| 268 | ::std::cout << error[1] << "m, "; |
| 269 | ::std::cout << error[2] << "m" << ::std::endl; |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 270 | } |
| 271 | } |
Parker Schuh | a4e52fb | 2019-02-24 18:18:15 -0800 | [diff] [blame] | 272 | |
| 273 | CameraCalibration results; |
| 274 | results.dataset = info; |
| 275 | results.intrinsics = IntrinsicParams::get(&intrinsics[0]); |
| 276 | results.geometry = CameraGeometry::get(&geometry[0]); |
James Kuszmaul | e2c71ea | 2019-03-04 08:14:21 -0800 | [diff] [blame] | 277 | DumpCameraConstants("y2019/vision/constants.cc", info.camera_id, results); |
Parker Schuh | 9e1d169 | 2019-02-24 14:34:04 -0800 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | } // namespace y2019 |
| 281 | } // namespace vision |
| 282 | |
| 283 | int main(int argc, char **argv) { y2019::vision::main(argc, argv); } |