Changeset 56 in pacpussensors for trunk/StereoVisionDisparity
- Timestamp:
- Jun 27, 2014, 2:16:15 PM (11 years ago)
- Location:
- trunk/StereoVisionDisparity
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/StereoVisionDisparity/DisparityMap.cpp
r53 r56 144 144 THREAD_ALIVE = true; 145 145 start(); 146 147 emit minimumDisparityChanged(this->min_disp); 148 emit numberOfDisparityChanged(this->num_disp); 149 emit SADWindowSizeChanged(this->sbm_SADWindowSize); 150 emit textureTresholdChanged(this->sbm_textureThreshold); 151 emit uniquenessRatioChanged(this->sbm_uniquenessRatio); 146 152 } 147 153 … … 577 583 } 578 584 585 586 //////////////////////////////////////////////////////////////////////////////// 587 void DisparityMap::setMinimumDisparity(int minimum_disp) 588 { 589 this->min_disp = minimum_disp; 590 591 emit minimumDisparityChanged(this->min_disp); 592 } 593 594 595 //////////////////////////////////////////////////////////////////////////////// 596 void DisparityMap::setNumberOfDisparity(int numberOfDisparity) 597 { 598 // Must be a multiple of 16 599 this->num_disp = numberOfDisparity & ~15; 600 if (this->num_disp < 16) 601 this->num_disp = 16; 602 603 emit numberOfDisparityChanged(this->num_disp); 604 } 605 606 607 //////////////////////////////////////////////////////////////////////////////// 608 void DisparityMap::setSADWindowSize(int SADWindowSize) 609 { 610 // Must be an odd number 611 this->sbm_SADWindowSize = SADWindowSize | 1; 612 613 emit SADWindowSizeChanged(this->sbm_SADWindowSize); 614 } 615 616 617 //////////////////////////////////////////////////////////////////////////////// 618 void DisparityMap::setTextureTreshold(int textureTreshold) 619 { 620 this->sbm_textureThreshold = textureTreshold; 621 622 emit textureTresholdChanged(this->sbm_textureThreshold); 623 } 624 625 626 //////////////////////////////////////////////////////////////////////////////// 627 void DisparityMap::setUniquenessRatio(int uniquenessRatio) 628 { 629 this->sbm_uniquenessRatio = uniquenessRatio; 630 631 emit uniquenessRatioChanged(this->sbm_uniquenessRatio); 632 } 633 634 579 635 //////////////////////////////////////////////////////////////////////////////// 580 636 /// CalcDisparityMap … … 640 696 Right_img_gray = Right_img_exp; 641 697 } 698 699 /*cv::namedWindow("Disparity trackbar", CV_WINDOW_NORMAL); 700 cv::createTrackbar("sbm_preFilterCap", "Disparity trackbar", &sbm_preFilterCap, 63); 701 cv::createTrackbar("sbm_preFilterSize", "Disparity trackbar", &sbm_preFilterSize, 250); 702 cv::createTrackbar("sbm_SADWindowSize", "Disparity trackbar", &sbm_SADWindowSize, 250); 703 cv::createTrackbar("min_disp", "Disparity trackbar", &min_disp, 250); 704 cv::createTrackbar("num_disp", "Disparity trackbar", &num_disp, 250); 705 cv::createTrackbar("sbm_textureThreshold", "Disparity trackbar", &sbm_textureThreshold, 250); 706 cv::createTrackbar("sbm_uniquenessRatio", "Disparity trackbar", &sbm_uniquenessRatio, 250); 707 cv::createTrackbar("sbm_speckleWindowSize", "Disparity trackbar", &sbm_speckleWindowSize, 250); 708 cv::createTrackbar("sbm_speckleRange", "Disparity trackbar", &sbm_speckleRange, 250); 709 this->sbm_SADWindowSize = (this->sbm_SADWindowSize % 2 > 0) ? this->sbm_SADWindowSize : this->sbm_SADWindowSize + 1; 710 this->num_disp = (this->num_disp % 16 == 0) ? this->num_disp : this->num_disp - (this->num_disp % 16);*/ 642 711 643 712 // Configuration … … 666 735 // the parameter to a positive value, it will be implicitly multiplied by 16. Normally, 1 or 2 is 667 736 // good enough. 668 737 669 738 // Calculate the disparity image (16S = scaled by 16, must be divided by 16; 32F = original value) 670 739 sbm(Left_img_gray, Right_img_gray, Disp_map_exp, CV_16S); … … 701 770 sgbm.disp12MaxDiff = this->sgbm_disp12MaxDiff; // Maximum allowed difference (in integer pixel units) in the left-right disparity check. Set it to 702 771 // a non-positive value to disable the check. 703 sgbm.fullDP = type == SGBM; // Set it to true to run the full-scale two-pass dynamic programming algorithm.772 sgbm.fullDP = type == SGBM; // Set it to true to run the full-scale two-pass dynamic programming algorithm. 704 773 // It will consume O(W*H*numDisparities) bytes, which is large for 640x480 stereo 705 774 // and huge for HD-size pictures. -
trunk/StereoVisionDisparity/DisparityMap.h
r50 r56 39 39 public ComponentBase 40 40 { 41 Q_OBJECT 41 42 public: 42 43 //============================= DEFAULT ELEMENTS =============================================== … … 62 63 63 64 void InitDefault(); 65 66 public Q_SLOTS: 67 void setMinimumDisparity(int minimum_disp); 68 void setNumberOfDisparity(int numberOfDisparity); 69 void setSADWindowSize(int SADWindowSize); 70 void setTextureTreshold(int textureTreshold); 71 void setUniquenessRatio(int uniquenessRatio); 72 73 Q_SIGNALS: 74 void minimumDisparityChanged(int minDisp); 75 void numberOfDisparityChanged(int numOfDisp); 76 void SADWindowSizeChanged(int SADWinSize); 77 void textureTresholdChanged(int textTresh); 78 void uniquenessRatioChanged(int uniqRatio); 64 79 65 80 private: -
trunk/StereoVisionDisparity/ObstacleDetectionComponent.cpp
r53 r56 43 43 static const string ObstacleDetectionMemoryName_dispout = "ObstacleDetection-disp"; 44 44 45 static const string ObstacleDetectionMemoryName_dispMapNorm = "ObstacleDetection-dispMapNorm"; 46 static const string ObstacleDetectionMemoryName_result = "ObstacleDetection-result"; 47 45 48 ////////////////////////////////////////////////////////////////////////// 46 49 /* ComparePoints1 … … 134 137 this->shmem_dispout = NULL; 135 138 139 if(this->shmem_dispMapNormalized) 140 delete shmem_dispMapNormalized; 141 142 this->shmem_dispMapNormalized = NULL; 143 144 if(this->shmem_result) 145 delete shmem_result; 146 147 this->shmem_result = NULL; 136 148 } 137 149 … … 169 181 this->shmem_dispout = new ShMem(ObstacleDetectionMemoryName_dispout.c_str(), this->dispout_mem_size); 170 182 183 this->shmem_dispMapNormalized = new ShMem(ObstacleDetectionMemoryName_dispMapNorm.c_str(), (this->cam_width * this->cam_height)); 184 185 this->shmem_result = new ShMem(ObstacleDetectionMemoryName_result.c_str(), (this->cam_width * this->cam_height * 3)); 186 171 187 // Run thread 172 188 THREAD_ALIVE = true; … … 214 230 215 231 this->shmem_dispout = NULL; 232 233 if(this->shmem_dispMapNormalized) 234 delete shmem_dispMapNormalized; 235 236 this->shmem_dispMapNormalized = NULL; 237 238 if(this->shmem_result) 239 delete shmem_result; 240 241 this->shmem_result = NULL; 216 242 217 243 // Free the malloc memories … … 221 247 free(this->mask2_mem); 222 248 free(this->dispout_mem); 223 224 249 } 225 250 … … 452 477 } 453 478 479 //memcpy(this->dispMapNorm_mem, &this->dispMapNormImageHeader, sizeof(TimestampedStructImage)); 480 //memcpy((void*)((TimestampedStructImage*)this->dispMapNorm_mem + 1), (void*)Disp_map.data, this->dispMapNormImageHeader.image.data_size); 481 this->shmem_dispMapNormalized->write((void*)Disp_map.data, (this->cam_width * this->destiny_roi_height)); 482 454 483 // Image to detect near obstacles 455 484 cv::Mat v_disp_map2 = v_disp_map.clone(); … … 540 569 541 570 // ----------------- Apply the mask in the reference image ------------------ 571 572 std::vector<cv::Mat> channels(3); 573 cv::Mat reference; 574 if(this->cam_channels == 1) 575 { 576 cv::cvtColor((this->CurrentReferenceFrame(cv::Rect(this->destiny_roi_x, this->destiny_roi_y, this->destiny_roi_width, this->destiny_roi_height))).clone(), reference, CV_GRAY2BGR); 577 } 578 else 579 { 580 reference = (this->CurrentReferenceFrame(cv::Rect(this->destiny_roi_x, this->destiny_roi_y, this->destiny_roi_width, this->destiny_roi_height))).clone(); 581 } 582 583 cv::split(reference, channels); 584 585 masks.second = 1 - masks.second; 586 channels[1] = masks.second.mul(channels[0]); // Activate the red color as obstacles 587 channels[2] = masks.second.mul(channels[1]); // Activate the red color as obstacles 588 589 //masks.second = masks.second - masks.first; 590 //channels[0] = (1 - masks.second).mul(channels[0]); // Activate the yellow color for unclassified area 591 592 cv::merge(channels, reference); 593 594 this->shmem_result->write((void*)reference.data, (this->destiny_roi_width * this->destiny_roi_height * 3)); 595 542 596 if(this->showdebug) 543 597 { 544 std::vector<cv::Mat> channels(3); 545 cv::Mat reference; 546 if(this->cam_channels == 1) 547 { 548 cv::Mat img_gray = (this->CurrentReferenceFrame(cv::Rect(this->destiny_roi_x, this->destiny_roi_y, this->destiny_roi_width, this->destiny_roi_height))).clone(); 549 cv::cvtColor(img_gray, reference, CV_GRAY2BGR); 550 } 551 else 552 { 553 reference = (this->CurrentReferenceFrame(cv::Rect(this->destiny_roi_x, this->destiny_roi_y, this->destiny_roi_width, this->destiny_roi_height))).clone(); 554 } 555 556 cv::split(reference, channels); 557 558 masks.second = 1 - masks.second; 559 channels[0] = masks.second.mul(channels[0]); // Activate the red color as obstacles 560 channels[1] = masks.second.mul(channels[1]); // Activate the red color as obstacles 561 562 masks.second = masks.second - masks.first; 563 channels[0] = (1 - masks.second).mul(channels[0]); // Activate the yellow color for unclassified area 564 565 cv::merge(channels, reference); 566 567 cv::namedWindow("ObstacleDetectionComponent - Final Classification",CV_WINDOW_AUTOSIZE); 598 cv::namedWindow("ObstacleDetectionComponent - Final Classification", CV_WINDOW_AUTOSIZE); 568 599 cv::imshow("ObstacleDetectionComponent - Final Classification", reference); 569 600 } -
trunk/StereoVisionDisparity/ObstacleDetectionComponent.h
r53 r56 94 94 TimestampedStructImage DispOutImageHeader; // Header for the output disp image 95 95 96 void * ref_mem;97 void * dispin_mem;98 void * mask1_mem;99 void * mask2_mem;100 void * dispout_mem;96 void * ref_mem; 97 void * dispin_mem; 98 void * mask1_mem; 99 void * mask2_mem; 100 void * dispout_mem; 101 101 102 102 size_t ref_mem_size; // Image shared memory position size … … 114 114 ShMem * shmem_mask2; // Shared memory control access to the image data (obstacles mask) 115 115 ShMem * shmem_dispout; // Shared memory control access to the image data (disparity map 16) 116 117 ShMem * shmem_dispMapNormalized; 118 ShMem * shmem_result; 116 119 117 120 cv::Mat CurrentReferenceFrame; // Reference image
Note:
See TracChangeset
for help on using the changeset viewer.