Changeset 64 in pacpussensors for trunk/StereoVisionDisparity
- Timestamp:
- Sep 4, 2014, 11:19:05 AM (11 years ago)
- Location:
- trunk/StereoVisionDisparity
- Files:
-
- 4 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/StereoVisionDisparity/CMakeLists.txt
r53 r64 52 52 set( 53 53 PROJECT_SRCS 54 VDisparity.cpp55 VDisparity.h56 UDisparity.cpp57 UDisparity.h58 54 DisparityMap.cpp 59 55 DisparityMap.h … … 69 65 set( 70 66 FILES_TO_MOC 71 VDisparity.h72 UDisparity.h73 67 DisparityMap.h 74 68 ObstacleDetectionComponent.h -
trunk/StereoVisionDisparity/DisparityMap.h
r57 r64 31 31 32 32 #include <QThread> 33 #include <QMutex>34 33 35 34 namespace pacpus { -
trunk/StereoVisionDisparity/ObstacleDetectionComponent.cpp
r56 r64 504 504 cv::waitKey(1); 505 505 } 506 506 507 507 // Remap the v-disparity point in the original image and create binary masks 508 508 //std::pair<cv::Mat, cv::Mat> masks = this->MaskSurface2(Disp_map, color_v_disp_map1, color_uv_disp_map.first, this->min_disp, this->max_disp, 1); … … 599 599 cv::imshow("ObstacleDetectionComponent - Final Classification", reference); 600 600 } 601 601 602 //--------------------------------------------------------------------------- 602 603 … … 622 623 cvDestroyAllWindows(); 623 624 } 625 626 /* PointTriangulate 627 Description: 628 Calculate the point triangulation in the world 629 Parameters: 630 row,col = row and column in the image 631 x,y,z = world coordinates 632 disparity = disparity value 633 634 bool ObstacleDetectionComponent::PointTriangulate(int row, int col, double &x, double &y, double &z, double disparity) 635 { 636 bool valid_point = false; 637 638 if(disparity > 0.0 && disparity < 255.0) 639 { 640 z = this->cam_width * this->cam_fx * this->cam_baseline / disparity; 641 double u = col / (this->cam_width - 1.0) - this->cam_cx; 642 double v = row / (this->cam_height - 1.0) - this->cam_cy; 643 644 x = u * z / this->cam_fx; 645 646 y = v * z / this->cam_fy; 647 648 valid_point = true; 649 } 650 651 return valid_point; 652 }*/ 653 624 654 625 655 // Function to calculate the U/V disparity map -
trunk/StereoVisionDisparity/ObstacleDetectionComponent.h
r56 r64 31 31 32 32 #include <QThread> 33 #include <QMutex>34 33 35 34 namespace pacpus { … … 71 70 int cam_height; // image height 72 71 int cam_channels; // number of channels 72 double cam_ref_cx; // cx camera divide by x image size 73 double cam_ref_cy; // cy camera divide by y image size 74 double cam_ref_fx; // fx camera divide by x image size 75 double cam_ref_fy; // fy camera divide by y image size 73 76 bool showdebug; // Show frame acquired 74 77 int min_disp; // Minimum disparity value to detect obstacles in the u/v-disp map … … 191 194 A CalcMedian(std::vector<A> vetor) const; 192 195 196 //bool PointTriangulate(int row, int col, double &x, double &y, double &z, double disparity); 193 197 }; 194 198
Note:
See TracChangeset
for help on using the changeset viewer.