Computes distance from Point to Line with MATLAB functions
- demo_pt_line.m - runs demo_2d.m and demo_nd.m
- demo_2d.m - 2D demo
- line_2d.m - computes line equation ax + by + c = 0 from two points
- dist_2d.m - computes distance from point to line
- demo_nd.m - N-D demo
- line_nd.m - computes line equation from two points
- dist_nd.m - computes distance from point to line
- demo_ransac.m - RANSAC demo
- ransac_linefit_2d - fits 2D line with outlier rejection
- ransac_linefit_nd - fits N-D line with outlier rejection
- RANSAC - [Required] Peter Kovesi's ransac.m
- RANDOMSAMPLE - [Required] Peter Kovesi's randomsample.m