cc_lane_post_processor.cc 36.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/******************************************************************************
 * Copyright 2018 The Apollo Authors. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *****************************************************************************/

// @brief: CC lane post-processor source file

19 20
#include "modules/perception/obstacle/camera/lane_post_process/cc_lane_post_processor/cc_lane_post_processor.h"

21
#include <algorithm>
22 23 24 25 26 27 28 29 30 31
#include <cmath>
#include <limits>
#include <numeric>
#include <unordered_map>

namespace apollo {
namespace perception {

using std::pair;
using std::shared_ptr;
32
using std::string;
33
using std::to_string;
34 35
using std::unordered_map;
using std::vector;
36 37 38 39 40 41 42 43 44 45

bool CompOriginLateralDistObjectID(const pair<ScalarType, int> &a,
                                   const pair<ScalarType, int> &b) {
  return a.first > b.first;
}

bool CCLanePostProcessor::Init() {
  // 1. get model config
  ConfigManager *config_manager = ConfigManager::instance();

46 47 48
  const ModelConfig *model_config =
      config_manager->GetModelConfig(this->name());
  if (model_config == nullptr) {
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
    AERROR << "not found model: " << this->name();
    return false;
  }

  // 2. get parameters
  string space_type;
  if (!model_config->GetValue("space_type", &space_type)) {
    AERROR << "space type not found.";
    return false;
  }
  if (space_type == "vehicle") {
    options_.space_type = SpaceType::VEHICLE;
  } else if (space_type == "image") {
    AINFO << "using image space to generate lane instances ...";
    options_.space_type = SpaceType::IMAGE;
  } else {
65
    AERROR << "invalid space type" << space_type;
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
    return false;
  }
  options_.frame.space_type = options_.space_type;

  if (!model_config->GetValue("image_width", &image_width_)) {
    AERROR << "image width not found.";
    return false;
  }
  if (!model_config->GetValue("image_height", &image_height_)) {
    AERROR << "image height not found.";
    return false;
  }

  std::vector<float> roi;
  if (!model_config->GetValue("roi", &roi)) {
    AERROR << "roi not found.";
    return false;
  }
  if (static_cast<int>(roi.size()) != 4) {
    AERROR << "roi format error.";
    return false;
  } else {
    roi_.x = static_cast<int>(roi[0]);
    roi_.y = static_cast<int>(roi[1]);
    roi_.width = static_cast<int>(roi[2]);
    roi_.height = static_cast<int>(roi[3]);
    options_.frame.image_roi = roi_;
    AINFO << "project ROI = [" << roi_.x << ", " << roi_.y << ", "
          << roi_.x + roi_.width - 1 << ", " << roi_.y + roi_.height - 1 << "]";
  }

97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
  if (!model_config->GetValue("use_non_mask", &options_.frame.use_non_mask)) {
    AERROR << "the use_non_mask parameter not found.";
    return false;
  }

  std::vector<float> non_mask_polygon_points;
  if (!model_config->GetValue("non_mask", &non_mask_polygon_points)) {
    AERROR << "non_mask points not found.";
    return false;
  }

  if (non_mask_polygon_points.size() % 2 != 0) {
    AERROR << "the number of point coordinate values should be even.";
    return false;
  }
  size_t non_mask_polygon_point_num = non_mask_polygon_points.size() / 2;

  non_mask_.reset(new NonMask(non_mask_polygon_point_num));
  for (size_t i = 0; i < non_mask_polygon_point_num; ++i) {
    non_mask_->AddPolygonPoint(non_mask_polygon_points.at(2 * i),
                               non_mask_polygon_points.at(2 * i + 1));
  }

120
  if (!model_config->GetValue("lane_map_confidence_thresh",
121
                              &options_.lane_map_conf_thresh)) {
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
    AERROR << "the confidence threshold of label map not found.";
    return false;
  }

  if (!model_config->GetValue("cc_split_siz", &options_.cc_split_siz)) {
    AERROR << "maximum bounding-box size for splitting CC not found.";
    return false;
  }
  if (!model_config->GetValue("cc_split_len", &options_.cc_split_len)) {
    AERROR << "unit length for splitting CC not found.";
    return false;
  }

  // parameters on generating markers
  if (!model_config->GetValue("min_cc_pixel_num",
137
                              &options_.frame.min_cc_pixel_num)) {
138 139 140 141 142 143 144 145 146 147
    AERROR << "minimum CC pixel number not found.";
    return false;
  }

  if (!model_config->GetValue("min_cc_size", &options_.frame.min_cc_size)) {
    AERROR << "minimum CC size not found.";
    return false;
  }

  if (!model_config->GetValue(options_.frame.space_type == SpaceType::IMAGE
148 149 150
                                  ? "min_y_search_offset_image"
                                  : "min_y_search_offset",
                              &options_.frame.min_y_search_offset)) {
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
    AERROR << "minimum verticle offset used for marker association not found.";
    return false;
  }

  // parameters on marker association
  string assoc_method;
  if (!model_config->GetValue("assoc_method", &assoc_method)) {
    AERROR << "marker association method not found.";
    return false;
  }
  if (assoc_method == "greedy_group_connect") {
    options_.frame.assoc_param.method = AssociationMethod::GREEDY_GROUP_CONNECT;
  } else {
    AERROR << "invalid marker association method." << assoc_method;
    return false;
  }

  if (!model_config->GetValue(options_.frame.space_type == SpaceType::IMAGE
169 170 171
                                  ? "assoc_min_distance_image"
                                  : "assoc_min_distance",
                              &options_.frame.assoc_param.min_distance)) {
172 173 174 175 176 177
    AERROR << "minimum distance threshold for marker association not found.";
    return false;
  }
  AINFO << "assoc_min_distance = " << options_.frame.assoc_param.min_distance;

  if (!model_config->GetValue(options_.frame.space_type == SpaceType::IMAGE
178 179 180
                                  ? "assoc_max_distance_image"
                                  : "assoc_max_distance",
                              &options_.frame.assoc_param.max_distance)) {
181 182 183 184 185 186
    AERROR << "maximum distance threshold for marker association not found.";
    return false;
  }
  AINFO << "assoc_max_distance = " << options_.frame.assoc_param.max_distance;

  if (!model_config->GetValue("assoc_distance_weight",
187
                              &options_.frame.assoc_param.distance_weight)) {
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
    AERROR << "distance weight for marker association not found.";
    return false;
  }
  AINFO << "assoc_distance_weight = "
        << options_.frame.assoc_param.distance_weight;

  if (!model_config->GetValue(
          options_.frame.space_type == SpaceType::IMAGE
              ? "assoc_max_deviation_angle_image"
              : "assoc_max_deviation_angle",
          &options_.frame.assoc_param.max_deviation_angle)) {
    AERROR << "max deviation angle threshold "
           << "for marker association not found.";
    return false;
  }
  AINFO << "assoc_max_deviation_angle = "
        << options_.frame.assoc_param.max_deviation_angle;
  options_.frame.assoc_param.max_deviation_angle *= (M_PI / 180.0);

  if (!model_config->GetValue(
          "assoc_deviation_angle_weight",
          &options_.frame.assoc_param.deviation_angle_weight)) {
    AERROR << "deviation angle weight "
           << "for marker association not found.";
    return false;
  }
  AINFO << "assoc_deviation_angle_weight = "
        << options_.frame.assoc_param.deviation_angle_weight;

  if (!model_config->GetValue(options_.frame.space_type == SpaceType::IMAGE
218 219 220
                                  ? "assoc_max_relative_orie_image"
                                  : "assoc_max_relative_orie",
                              &options_.frame.assoc_param.max_relative_orie)) {
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
    AERROR << "max relative orientation threshold "
           << "for marker association not found.";
    return false;
  }
  AINFO << "assoc_max_relative_orie = "
        << options_.frame.assoc_param.max_relative_orie;
  options_.frame.assoc_param.max_relative_orie *= (M_PI / 180.0);

  if (!model_config->GetValue(
          "assoc_relative_orie_weight",
          &options_.frame.assoc_param.relative_orie_weight)) {
    AERROR << "relative orientation weight "
           << "for marker association not found.";
    return false;
  }
  AINFO << "assoc_relative_orie_weight = "
        << options_.frame.assoc_param.relative_orie_weight;

  if (!model_config->GetValue(
          options_.frame.space_type == SpaceType::IMAGE
              ? "assoc_max_departure_distance_image"
              : "assoc_max_departure_distance",
          &options_.frame.assoc_param.max_departure_distance)) {
    AERROR << "max departure distance threshold "
           << "for marker association not found.";
    return false;
  }
  AINFO << "assoc_max_departure_distance = "
        << options_.frame.assoc_param.max_departure_distance;

  if (!model_config->GetValue(
          "assoc_departure_distance_weight",
          &options_.frame.assoc_param.departure_distance_weight)) {
    AERROR << "departure distance weight "
           << "for marker association not found.";
    return false;
  }
  AINFO << "assoc_departure_distance_weight = "
        << options_.frame.assoc_param.departure_distance_weight;

  if (!model_config->GetValue(
          options_.frame.space_type == SpaceType::IMAGE
              ? "assoc_min_orientation_estimation_size_image"
              : "assoc_min_orientation_estimation_size",
          &options_.frame.assoc_param.min_orientation_estimation_size)) {
    AERROR << "minimum size threshold used for orientation estimation"
           << " in marker association not found.";
    return false;
  }
  AINFO << "assoc_min_orientation_estimation_size = "
        << options_.frame.assoc_param.min_orientation_estimation_size;

  if (options_.frame.assoc_param.method ==
      AssociationMethod::GREEDY_GROUP_CONNECT) {
    if (!model_config->GetValue(
            "max_group_prediction_marker_num",
            &options_.frame.group_param.max_group_prediction_marker_num)) {
      AERROR << "maximum number of markers used for orientation estimation"
             << " in greed group connect association not found.";
      return false;
    }
  } else {
283
    AERROR << "invalid marker association method.";
284 285 286 287 288 289 290 291 292 293 294 295 296
    return false;
  }

  if (!model_config->GetValue(
          "orientation_estimation_skip_marker_num",
          &options_.frame.orientation_estimation_skip_marker_num)) {
    AERROR << "skip marker number used for orientation estimation in "
           << "marker association";
    return false;
  }

  // parameters on finding lane objects
  if (!model_config->GetValue("lane_interval_distance",
297
                              &options_.frame.lane_interval_distance)) {
298 299 300 301 302
    AERROR << "The predefined lane interval distance is not found.";
    return false;
  }

  if (!model_config->GetValue(options_.frame.space_type == SpaceType::IMAGE
303 304 305
                                  ? "min_instance_size_prefiltered_image"
                                  : "min_instance_size_prefiltered",
                              &options_.frame.min_instance_size_prefiltered)) {
306 307 308 309 310 311
    AERROR << "The minimum size of lane instances "
           << "to be prefiltered is not found.";
    return false;
  }

  if (!model_config->GetValue(options_.frame.space_type == SpaceType::IMAGE
312 313 314
                                  ? "max_size_to_fit_straight_line_image"
                                  : "max_size_to_fit_straight_line",
                              &options_.frame.max_size_to_fit_straight_line)) {
315 316 317 318 319 320 321
    AERROR << "The maximum size used for fitting straight lines "
           << "on lane instances is not found.";
    return false;
  }

  // 3. initialize projector
  if (!model_config->GetValue("max_distance_to_see_for_transformer",
322
                              &max_distance_to_see_)) {
323 324 325 326 327 328 329 330 331 332 333 334 335 336
    AERROR << "maximum perception distance for transformer is not found, "
              "use default value";
    return false;
  }
  AINFO << "initial max_distance_to_see: " << max_distance_to_see_
        << " (meters)";

  if (options_.space_type == SpaceType::VEHICLE) {
    projector_.reset(new Projector<ScalarType>());
    projector_->Init(roi_, max_distance_to_see_, vis_);
    is_x_longitude_ = true;
  } else if (options_.space_type == SpaceType::IMAGE) {
    is_x_longitude_ = false;
  } else {
337
    AERROR << "invalid space type" << space_type;
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
    return false;
  }

  time_stamp_ = 0.0;
  frame_id_ = 0;
  cc_generator_.reset(
      new ConnectedComponentGenerator(image_width_, image_height_, roi_));
  cur_frame_.reset(new LaneFrame);

  is_init_ = true;
  return true;
}

bool CCLanePostProcessor::AddInstanceIntoLaneObject(
    const LaneInstance &instance, LaneObject *lane_object) {
  if (lane_object == nullptr) {
    AERROR << "lane object is a null pointer";
    return false;
  }

  if (lane_object->pos.empty()) {
    lane_object->pos.reserve(20);
    lane_object->orie.reserve(20);
    lane_object->image_pos.reserve(20);
    lane_object->confidence.reserve(20);
  }

  auto graph = cur_frame_->graph(instance.graph_id);

  int i_prev = -1;
  for (size_t j = 0; j < graph->size(); ++j) {
    int i = graph->at(j).first;
    if (cur_frame_->marker(i)->shape_type != MarkerShapeType::POINT) {
      if (i_prev < 0 ||
          cur_frame_->marker(i)->cc_id != cur_frame_->marker(i_prev)->cc_id) {
        lane_object->pos.push_back(cur_frame_->marker(i)->start_pos);
        lane_object->orie.push_back(cur_frame_->marker(i)->orie);
        lane_object->image_pos.push_back(
            cur_frame_->marker(i)->image_start_pos);
        lane_object->confidence.push_back(cur_frame_->marker(i)->confidence);
        lane_object->longitude_start =
            std::min(lane_object->pos.back().x(), lane_object->longitude_start);
        lane_object->longitude_end =
            std::max(lane_object->pos.back().x(), lane_object->longitude_end);
        lane_object->point_num++;
      }
    }

    lane_object->pos.push_back(cur_frame_->marker(i)->pos);
    lane_object->orie.push_back(cur_frame_->marker(i)->orie);
    lane_object->image_pos.push_back(cur_frame_->marker(i)->image_pos);
    lane_object->confidence.push_back(cur_frame_->marker(i)->confidence);
    lane_object->longitude_start =
        std::min(lane_object->pos.back().x(), lane_object->longitude_start);
    lane_object->longitude_end =
        std::max(lane_object->pos.back().x(), lane_object->longitude_end);
    lane_object->point_num++;
    i_prev = i;
  }

  if (lane_object->point_num != lane_object->pos.size() ||
      lane_object->point_num != lane_object->orie.size() ||
      lane_object->point_num != lane_object->image_pos.size() ||
      lane_object->point_num != lane_object->confidence.size()) {
    AERROR << "the number of points in lane object does not match.";
    return false;
  }

  if (lane_object->point_num < 2) {
    AERROR << "the number of points in lane object should be no less than 2";
    return false;
  }

  // fit polynomial model and compute lateral distance for lane object
  if (lane_object->point_num < 3 ||
      lane_object->longitude_end - lane_object->longitude_start <
          options_.frame.max_size_to_fit_straight_line) {
    // fit a 1st-order polynomial curve (straight line)
    lane_object->order = 1;
  } else {
    // fit a 2nd-order polynomial curve;
    lane_object->order = 2;
  }

  if (!PolyFit(lane_object->pos, lane_object->order, &(lane_object->model))) {
    AERROR << "failed to fit " << lane_object->order
           << " order polynomial curve.";
  }
  lane_object->lateral_distance = lane_object->model(0);

  return true;
}

bool CCLanePostProcessor::AddInstanceIntoLaneObjectImage(
    const LaneInstance &instance, LaneObject *lane_object) {
  if (lane_object == nullptr) {
    AERROR << "lane object is a null pointer";
    return false;
  }

  if (lane_object->pos.empty()) {
    lane_object->pos.reserve(20);
    lane_object->orie.reserve(20);
    lane_object->image_pos.reserve(20);
    lane_object->confidence.reserve(20);
  }

  auto graph = cur_frame_->graph(instance.graph_id);

  ADEBUG << "show points for lane object: ";

  ScalarType y_offset = static_cast<ScalarType>(image_height_ - 1);

  int i_prev = -1;
  for (size_t j = 0; j < graph->size(); ++j) {
    int i = graph->at(j).first;
    if (cur_frame_->marker(i)->shape_type != MarkerShapeType::POINT) {
      if (i_prev < 0 ||
          cur_frame_->marker(i)->cc_id != cur_frame_->marker(i_prev)->cc_id) {
        lane_object->pos.push_back(cur_frame_->marker(i)->start_pos);
        lane_object->pos.back()(1) = y_offset - lane_object->pos.back()(1);
        lane_object->orie.push_back(cur_frame_->marker(i)->orie);
        lane_object->orie.back()(1) = -lane_object->orie.back()(1);
        lane_object->image_pos.push_back(
            cur_frame_->marker(i)->image_start_pos);
        lane_object->confidence.push_back(cur_frame_->marker(i)->confidence);
        lane_object->longitude_start =
            std::min(lane_object->pos.back().y(), lane_object->longitude_start);
        lane_object->longitude_end =
            std::max(lane_object->pos.back().y(), lane_object->longitude_end);

        ADEBUG << " point " << lane_object->point_num << " = "
               << "(" << lane_object->pos.back()(0) << ", "
               << lane_object->pos.back()(1) << "), "
               << "(" << lane_object->image_pos.back()(0) << ", "
               << lane_object->image_pos.back()(1) << ")";

        lane_object->point_num++;
      }
    }

    lane_object->pos.push_back(cur_frame_->marker(i)->pos);
    lane_object->pos.back()(1) = y_offset - lane_object->pos.back()(1);
    lane_object->orie.push_back(cur_frame_->marker(i)->orie);
    lane_object->orie.back()(1) = -lane_object->orie.back()(1);
    lane_object->image_pos.push_back(cur_frame_->marker(i)->image_pos);
    lane_object->confidence.push_back(cur_frame_->marker(i)->confidence);
    lane_object->longitude_start =
        std::min(lane_object->pos.back().y(), lane_object->longitude_start);
    lane_object->longitude_end =
        std::max(lane_object->pos.back().y(), lane_object->longitude_end);

    ADEBUG << " point " << lane_object->point_num << " = "
           << "(" << lane_object->pos.back()(0) << ", "
           << lane_object->pos.back()(1) << "), "
           << "(" << lane_object->image_pos.back()(0) << ", "
           << lane_object->image_pos.back()(1) << ")";

    lane_object->point_num++;
    i_prev = i;
  }
  ADEBUG << "longitude_start = " << lane_object->longitude_start;
  ADEBUG << "longitude_end = " << lane_object->longitude_end;

  if (lane_object->point_num != lane_object->pos.size() ||
      lane_object->point_num != lane_object->orie.size() ||
      lane_object->point_num != lane_object->image_pos.size() ||
      lane_object->point_num != lane_object->confidence.size()) {
    AERROR << "the number of points in lane object does not match.";
    return false;
  }

  if (lane_object->point_num < 2) {
    AERROR << "the number of points in lane object should be no less than 2";
    return false;
  }

  // fit polynomial model and compute lateral distance for lane object
  ADEBUG << "max_size_to_fit_straight_line = "
         << options_.frame.max_size_to_fit_straight_line;
  if (lane_object->point_num < 3 ||
      lane_object->longitude_end - lane_object->longitude_start <
          options_.frame.max_size_to_fit_straight_line) {
    // fit a 1st-order polynomial curve (straight line)
    lane_object->order = 1;
  } else {
    // fit a 2nd-order polynomial curve;
    lane_object->order = 2;
  }

  if (!PolyFit(lane_object->pos, lane_object->order, &(lane_object->model),
               false)) {
    AERROR << "failed to fit " << lane_object->order
           << " order polynomial curve";
  }

  lane_object->lateral_distance = lane_object->model(0);

  return true;
}

bool CCLanePostProcessor::GenerateLaneInstances(const cv::Mat &lane_map) {
  if (!is_init_) {
    AERROR << "the lane post-processor is not initialized.";
    return false;
  }

  if (lane_map.empty()) {
    AERROR << "input lane map is empty.";
    return false;
  }

  // 1. get binary lane label mask
  cv::Mat lane_mask;
  if (lane_map.type() == CV_32FC1) {
    // confidence heatmap
    ADEBUG << "confidence threshold = " << options_.lane_map_conf_thresh;
    ADEBUG << "lane map size = "
           << "(" << lane_map.cols << ", " << lane_map.rows << ")";
    lane_mask.create(lane_map.rows, lane_map.cols, CV_8UC1);
    lane_mask.setTo(cv::Scalar(0));
    for (int h = 0; h < lane_mask.rows; ++h) {
      for (int w = 0; w < lane_mask.cols; ++w) {
        if (lane_map.at<float>(h, w) >= options_.lane_map_conf_thresh) {
          lane_mask.at<unsigned char>(h, w) = 1;
        }
      }
    }
  } else if (lane_map.type() == CV_8UC1) {
    // lane label map
    lane_mask = lane_map;
  } else {
    AERROR << "invalid input lane map type: " << lane_map.type();
    return false;
  }

  // 2. find connected components from lane label mask
  vector<ConnectedComponentPtr> cc_list;
  cc_generator_->FindConnectedComponents(lane_mask, &cc_list);

578
  ADEBUG << "number of connected components = " << cc_list.size();
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598

  // 3. split CC and find inner edges
  int tot_inner_edge_count = 0;
  for (int i = 0; i < static_cast<int>(cc_list.size()); ++i) {
    auto it_cc = cc_list[i];
    it_cc->FindBboxPixels();
    it_cc->FindVertices();
    it_cc->FindEdges();
    if (it_cc->DetermineSplit(options_.cc_split_siz) !=
        ConnectedComponent::BoundingBoxSplitType::NONE) {
      it_cc->FindContourForSplit();
      it_cc->SplitContour(options_.cc_split_len);
    }
    tot_inner_edge_count += static_cast<int>(it_cc->GetInnerEdges()->size());
  }

  /// 4. do lane marker association and determine lane instance labels
  cur_frame_.reset(new LaneFrame);

  if (options_.frame.space_type == SpaceType::IMAGE) {
599
    cur_frame_->Init(cc_list, non_mask_, options_.frame);
600
  } else if (options_.frame.space_type == SpaceType::VEHICLE) {
601
    cur_frame_->Init(cc_list, non_mask_, projector_, options_.frame);
602 603 604 605 606 607 608
  } else {
    AERROR << "unknown space type: " << options_.frame.space_type;
    return false;
  }

  cur_frame_->Process(cur_lane_instances_);

609
  ADEBUG << "number of lane instances = " << cur_lane_instances_->size();
610 611 612 613 614 615

  return true;
}

bool CCLanePostProcessor::Process(const cv::Mat &lane_map,
                                  const CameraLanePostProcessOptions &options,
616
                                  LaneObjectsPtr *lane_objects) {
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
  if (!is_init_) {
    AERROR << "lane post-processor is not initialized";
    return false;
  }

  if (lane_map.empty()) {
    AERROR << "input lane map is empty";
    return false;
  }
  if (lane_map.cols != image_width_) {
    AERROR << "input lane map width does not match: "
           << "(" << lane_map.cols << " vs. " << image_width_ << ")";
    return false;
  }
  if (lane_map.rows != image_height_) {
    AERROR << "input lane map height does not match: "
           << "(" << lane_map.rows << " vs. " << image_height_ << ")";
    return false;
  }

  time_stamp_ = options.timestamp;

  cur_lane_instances_.reset(new vector<LaneInstance>);
  if (!GenerateLaneInstances(lane_map)) {
    AERROR << "failed to compute lane instances.";
    return false;
  }
  std::sort(cur_lane_instances_->begin(), cur_lane_instances_->end(),
            LaneInstance::CompareSiz);

  /// generate lane objects
  if (options_.space_type == SpaceType::IMAGE) {
    /// for image space coordinate
    AINFO << "generate lane objects in image space ...";
    ScalarType x_center = static_cast<ScalarType>(roi_.x + roi_.width / 2);

Z
zhujun08 已提交
653 654
    lane_objects->reset(new LaneObjects());
    (*lane_objects)->reserve(2);
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
    bool is_left_lane_found = false;
    bool is_right_lane_found = false;
    for (auto it = cur_lane_instances_->begin();
         it != cur_lane_instances_->end(); ++it) {
      ADEBUG << "for lane instance " << it - cur_lane_instances_->begin();

      if (is_left_lane_found && is_right_lane_found) {
        break;
      }

      LaneObject cur_object;
      AddInstanceIntoLaneObjectImage(*it, &cur_object);

      if (cur_object.lateral_distance <= x_center) {
        // for left lane
        if (is_left_lane_found) {
          continue;
        }
Z
zhujun08 已提交
673 674
        (*lane_objects)->push_back(cur_object);
        (*lane_objects)->back().spatial = SpatialLabelType::L_0;
675 676 677 678 679 680
        is_left_lane_found = true;
      } else {
        // for right lane
        if (is_right_lane_found) {
          continue;
        }
Z
zhujun08 已提交
681 682
        (*lane_objects)->push_back(cur_object);
        (*lane_objects)->back().spatial = SpatialLabelType::R_0;
683 684 685
        is_right_lane_found = true;
      }

686
      ADEBUG << " lane object " << (*lane_objects)->back().GetSpatialLabel()
Z
zhujun08 已提交
687 688 689
            << " has " << (*lane_objects)->back().pos.size() << " points: "
            << "lateral distance = "
            << (*lane_objects)->back().lateral_distance;
690 691 692 693 694
    }

  } else {
    /// for vehicle space coordinate
    // select lane instances with non-overlap assumption
695
    ADEBUG << "generate lane objects ...";
Z
zhujun08 已提交
696 697
    lane_objects->reset(new LaneObjects());
    (*lane_objects)->reserve(2 * MAX_LANE_SPATIAL_LABELS);
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
    vector<pair<ScalarType, int>> origin_lateral_dist_object_id;
    origin_lateral_dist_object_id.reserve(2 * MAX_LANE_SPATIAL_LABELS);
    int count_lane_objects = 0;
    for (auto it = cur_lane_instances_->begin();
         it != cur_lane_instances_->end(); ++it) {
      ADEBUG << "for lane instance " << it - cur_lane_instances_->begin();

      // ignore current instance if it is too small
      if (it->siz < options_.frame.min_instance_size_prefiltered) {
        ADEBUG << "current instance is too small: " << it->siz;
        continue;
      }

      LaneObject cur_object;
      AddInstanceIntoLaneObject(*it, &cur_object);

Z
zhujun08 已提交
714
      if ((*lane_objects)->empty()) {
715
        // create a new lane object
Z
zhujun08 已提交
716
        (*lane_objects)->push_back(cur_object);
717 718 719 720 721 722 723 724 725 726 727
        origin_lateral_dist_object_id.push_back(
            std::make_pair(cur_object.lateral_distance, count_lane_objects++));
        ADEBUG << "generate a new lane object from instance";
        continue;
      }

      // ignore current instance if it crosses over any existing groups
      bool is_cross_over = false;
      vector<pair<ScalarType, ScalarType>> lateral_distances(
          count_lane_objects);
      size_t cross_over_lane_object_id = 0;
Z
zhujun08 已提交
728
      for (size_t k = 0; k < (*lane_objects)->size(); ++k) {
729 730 731 732 733 734 735 736 737
        // min distance to instance group
        lateral_distances[k].first = std::numeric_limits<ScalarType>::max();
        // max distance to instance group
        lateral_distances[k].second = -std::numeric_limits<ScalarType>::max();

        // determine whether cross over or not
        for (size_t i = 0; i < cur_object.pos.size(); ++i) {
          ScalarType deta_y =
              cur_object.pos[i].y() - PolyEval(cur_object.pos[i].x(),
Z
zhujun08 已提交
738 739
                                               (*lane_objects)->at(k).order,
                                               (*lane_objects)->at(k).model);
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
          lateral_distances[k].first =
              std::min(lateral_distances[k].first, deta_y);
          lateral_distances[k].second =
              std::max(lateral_distances[k].second, deta_y);
          if (lateral_distances[k].first * lateral_distances[k].second < 0) {
            is_cross_over = true;
          }
          if (is_cross_over) {
            break;
          }
        }

        if (is_cross_over) {
          cross_over_lane_object_id = k;
          break;
        }
      }
      if (is_cross_over) {
        ADEBUG << "instance crosses over lane object "
               << cross_over_lane_object_id;
        continue;
      }

      // search the very left lane w.r.t. current instance
      int left_lane_id = -1;
      ScalarType left_lane_dist = -std::numeric_limits<ScalarType>::max();
      for (int k = 0; k < count_lane_objects; ++k) {
        if (lateral_distances[k].second <= 0) {
          if (lateral_distances[k].second > left_lane_dist) {
            left_lane_dist = lateral_distances[k].second;
            left_lane_id = k;
          }
        }
      }
      if ((left_lane_id >= 0) &&
          (origin_lateral_dist_object_id.at(left_lane_id).first -
               cur_object.lateral_distance <
           MIN_BETWEEN_LANE_DISTANCE)) {
        ADEBUG << "too close to left lane object (" << left_lane_id << "): "
               << origin_lateral_dist_object_id.at(left_lane_id).first -
                      cur_object.lateral_distance
               << "(" << MIN_BETWEEN_LANE_DISTANCE << ")";
        continue;
      }

      // search the very right lane w.r.t. current instance
      int right_lane_id = -1;
      ScalarType right_lane_dist = std::numeric_limits<ScalarType>::max();
      for (int k = 0; k < count_lane_objects; ++k) {
        if (lateral_distances[k].first > 0) {
          if (lateral_distances[k].first < right_lane_dist) {
            right_lane_dist = lateral_distances[k].first;
            right_lane_id = k;
          }
        }
      }
      if ((right_lane_id >= 0) &&
          (cur_object.lateral_distance -
               origin_lateral_dist_object_id.at(right_lane_id).first <
           MIN_BETWEEN_LANE_DISTANCE)) {
        ADEBUG << "too close to right lane object (" << right_lane_id << "): "
               << origin_lateral_dist_object_id.at(right_lane_id).first -
                      cur_object.lateral_distance
               << "(" << MIN_BETWEEN_LANE_DISTANCE << ")";
        continue;
      }

      // accept the new lane object
Z
zhujun08 已提交
808
      (*lane_objects)->push_back(cur_object);
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
      origin_lateral_dist_object_id.push_back(
          std::make_pair(cur_object.lateral_distance, count_lane_objects++));
      ADEBUG << "generate a new lane object from instance.";
    }

    // determine spatial label of lane object
    std::sort(origin_lateral_dist_object_id.begin(),
              origin_lateral_dist_object_id.end(),
              CompOriginLateralDistObjectID);
    int i_l0 = -1;
    for (int k = 0; k < count_lane_objects; ++k) {
      if (origin_lateral_dist_object_id[k].first >= 0) {
        i_l0 = k;
      } else {
        break;
      }
    }

    vector<int> valid_lane_objects;
Z
zhujun08 已提交
828
    valid_lane_objects.reserve((*lane_objects)->size());
829 830 831 832 833 834 835 836

    // for left-side lanes
    for (int spatial_index = 0; spatial_index <= i_l0; ++spatial_index) {
      if (spatial_index >= MAX_LANE_SPATIAL_LABELS) {
        break;
      }
      int i_l = i_l0 - spatial_index;
      int object_id = origin_lateral_dist_object_id.at(i_l).second;
Z
zhujun08 已提交
837
      (*lane_objects)->at(object_id).spatial =
838 839 840
          static_cast<SpatialLabelType>(spatial_index);
      valid_lane_objects.push_back(object_id);

841
      ADEBUG << " lane object "
842
            << (*lane_objects)->at(object_id).GetSpatialLabel() << " has "
Z
zhujun08 已提交
843
            << (*lane_objects)->at(object_id).pos.size() << " points: "
844
            << "lateral distance="
Z
zhujun08 已提交
845
            << (*lane_objects)->at(object_id).lateral_distance;
846 847 848 849 850 851 852 853 854 855
    }

    // for right-side lanes
    int i_r = i_l0 + 1;
    for (int spatial_index = 0; spatial_index < MAX_LANE_SPATIAL_LABELS;
         ++spatial_index, ++i_r) {
      if (i_r >= count_lane_objects) {
        break;
      }
      int object_id = origin_lateral_dist_object_id.at(i_r).second;
Z
zhujun08 已提交
856
      (*lane_objects)->at(object_id).spatial = static_cast<SpatialLabelType>(
857 858 859
          MAX_LANE_SPATIAL_LABELS + spatial_index);
      valid_lane_objects.push_back(object_id);

Z
zhujun08 已提交
860
      AINFO << " lane object "
861 862
            << (*lane_objects)->at(object_id).GetSpatialLabel() << " has "
            << (*lane_objects)->at(object_id).pos.size() << " points: "
863
            << "lateral distance="
Z
zhujun08 已提交
864
            << (*lane_objects)->at(object_id).lateral_distance;
865
    }
Z
zhujun08 已提交
866
    if ((*lane_objects)->size() != static_cast<size_t>(count_lane_objects)) {
867 868 869 870 871 872 873
      AERROR << "the number of lane objects does not match.";
      return false;
    }

    // keep only the lane objects with valid spatial labels
    std::sort(valid_lane_objects.begin(), valid_lane_objects.end());
    for (size_t i = 0; i < valid_lane_objects.size(); ++i) {
Z
zhujun08 已提交
874
      (*lane_objects)->at(i) = (*lane_objects)->at(valid_lane_objects[i]);
875
    }
Z
zhujun08 已提交
876
    (*lane_objects)->resize(valid_lane_objects.size());
877 878
  }

879
  ADEBUG << "number of lane objects = " << (*lane_objects)->size();
880
  if (options_.space_type != SpaceType::IMAGE) {
Z
zhujun08 已提交
881
    if (!CompensateLaneObjects((*lane_objects))) {
882 883 884 885
      AERROR << "fail to compensate lane objects.";
      return false;
    }
  }
Z
zhujun08 已提交
886
  EnrichLaneInfo((*lane_objects));
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922

  return true;
}

bool CCLanePostProcessor::CompensateLaneObjects(LaneObjectsPtr lane_objects) {
  if (lane_objects == NULL) {
    AERROR << "lane_objects is a null pointer.";
    return false;
  }

  bool has_ego_lane_left = false;
  int ego_lane_left_idx = -1;
  bool has_ego_lane_right = false;
  int ego_lane_right_idx = -1;
  for (size_t i = 0; i < lane_objects->size(); ++i) {
    if (lane_objects->at(i).spatial == SpatialLabelType::L_0) {
      has_ego_lane_left = true;
      ego_lane_left_idx = static_cast<int>(i);
    } else if (lane_objects->at(i).spatial == SpatialLabelType::R_0) {
      has_ego_lane_right = true;
      ego_lane_right_idx = static_cast<int>(i);
    }
  }

  if ((has_ego_lane_left && has_ego_lane_right) ||
      (!has_ego_lane_left && !has_ego_lane_right)) {
    return true;
  }

  if (!has_ego_lane_left) {
    AINFO << "add virtual lane L_0 ...";
    if (ego_lane_right_idx == -1) {
      AERROR << "failed to compensate left ego lane due to no right ego lane.";
      return false;
    }

923
    LaneObject virtual_ego_lane_left = lane_objects->at(ego_lane_right_idx);
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938

    virtual_ego_lane_left.spatial = SpatialLabelType::L_0;
    virtual_ego_lane_left.is_compensated = true;

    for (size_t i = 0; i < virtual_ego_lane_left.pos.size(); ++i) {
      virtual_ego_lane_left.pos[i](1) += options_.frame.lane_interval_distance;
    }
    virtual_ego_lane_left.lateral_distance +=
        options_.frame.lane_interval_distance;
    virtual_ego_lane_left.model(0) += options_.frame.lane_interval_distance;

    lane_objects->push_back(virtual_ego_lane_left);
  }

  if (!has_ego_lane_right) {
939
    ADEBUG << "add virtual lane R_0 ...";
940 941 942 943 944
    if (ego_lane_left_idx == -1) {
      AERROR << "failed to compensate right ego lane due to no left ego lane.";
      return false;
    }

945
    LaneObject virtual_ego_lane_right = lane_objects->at(ego_lane_left_idx);
946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011

    virtual_ego_lane_right.spatial = SpatialLabelType::R_0;
    virtual_ego_lane_right.is_compensated = true;

    for (size_t i = 0; i < virtual_ego_lane_right.pos.size(); ++i) {
      virtual_ego_lane_right.pos[i](1) -= options_.frame.lane_interval_distance;
    }
    virtual_ego_lane_right.lateral_distance -=
        options_.frame.lane_interval_distance;
    virtual_ego_lane_right.model(0) -= options_.frame.lane_interval_distance;

    lane_objects->push_back(virtual_ego_lane_right);
  }

  return true;
}

bool CCLanePostProcessor::EnrichLaneInfo(LaneObjectsPtr lane_objects) {
  if (lane_objects == NULL) {
    AERROR << "lane_objects is a null pointer.";
    return false;
  }

  for (size_t i = 0; i < lane_objects->size(); ++i) {
    LaneObject &object = (*lane_objects)[i];
    assert(object.pos.size() > 0);
    assert(object.image_pos.size() == object.pos.size());

    // for polynomial curve on vehicle space
    object.pos_curve.a = object.model(3);
    object.pos_curve.b = object.model(2);
    object.pos_curve.c = object.model(1);
    object.pos_curve.d = object.model(0);

    // let x_start be always 0 according to L3's PNC requirement
    object.pos_curve.x_start =
        std::min(object.longitude_start, static_cast<ScalarType>(0));
    object.pos_curve.x_end =
        std::max(object.longitude_end, static_cast<ScalarType>(0));

    // for polynomial curve on image space
    ScalarType img_y_start = static_cast<ScalarType>(0);
    ScalarType img_y_end = static_cast<ScalarType>(INT_MAX);
    for (size_t j = 0; j < object.image_pos.size(); ++j) {
      ScalarType y = object.image_pos[j](1);
      img_y_start = std::max(img_y_start, y);
      img_y_end = std::min(img_y_end, y);
    }

    // polynomial function: x = a*y^3 + b*y^2 + c*y + d
    Eigen::Matrix<ScalarType, MAX_POLY_ORDER + 1, 1> coeff;
    PolyFit(object.image_pos, object.order, &coeff, false);

    object.img_curve.a = coeff(3);
    object.img_curve.b = coeff(2);
    object.img_curve.c = coeff(1);
    object.img_curve.d = coeff(0);
    object.img_curve.x_start = img_y_start;
    object.img_curve.x_end = img_y_end;
  }

  return true;
}

}  // namespace perception
}  // namespace apollo