基本信息
源码名称:车道线检测(matlab)
源码大小:0.67KB
文件格式:.m
开发语言:MATLAB
更新时间:2020-04-13
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍


function [lines] = lane_detection_houghlines(inputImage)%#codegen

%  Copyright 2019 The MathWorks, Inc.
coder.gpu.kernelfun;

% Convert RGB image to grayscale image.
if size(inputImage,3)==3
    grayImage = rgb2gray(inputImage);
else
    grayImage = inputImage;
end

% Edge detection using ordfilt2.
input = grayImage(240:end,1:end);
%imshow(input);
dom = ones(2);
minOrder = 1;
maxOrder = 4;
padopt = 'zeros';

Img = ordfilt2(input,minOrder,dom,padopt);
%imshow(Img);
level = graythresh(Img);
BW = imbinarize(Img,(1-level));
%imshow(BW);
[H,T,R] = hough(BW);
P  = houghpeaks(H,4,'threshold',1);
lines = houghlines(BW,T,R,P,'FillGap',200,'MinLength',150);