├── .gitignore ├── LICENSE ├── README.md ├── config ├── cfg.py ├── fisheye.yaml ├── pinhole.yaml └── spherical.yaml ├── dataset ├── fisheye │ ├── 00035326.png │ ├── 00037869.png │ ├── 00050273.png │ ├── 00059148.png │ ├── 00060621.png │ ├── 00060792.png │ ├── 00060942.png │ ├── 00066618.png │ ├── 00067223.png │ ├── 00071593.png │ ├── 00071845.png │ ├── 00075125.png │ ├── 00076000.png │ ├── 00076567.png │ ├── 00113788.png │ ├── 00221581.png │ ├── 00249234.png │ ├── 00294226.png │ ├── 00302536.png │ ├── 00509230.png │ ├── 1_000151.png │ ├── 1_000222.png │ ├── 1_000318.png │ ├── 1_000356.png │ ├── 1_000374.png │ ├── 2_000004.png │ ├── 2_000022.png │ ├── 2_000063.png │ ├── 2_000117.png │ ├── 2_000142.png │ ├── 2_000306.png │ ├── 2_000374.png │ ├── 2_000441.png │ ├── P1020824.png │ ├── P1020872.png │ └── P1040818.png ├── json2npz.py ├── json2npz_gt.py ├── pinhole │ ├── 00031591.png │ ├── 00031797.png │ ├── 00064064.png │ ├── 00076246.png │ ├── 00079423.png │ ├── 00079704.png │ ├── 00102235.png │ ├── 00102389.png │ ├── 00103410.png │ ├── 00104272.png │ ├── 00110879.png │ ├── 00113178.png │ ├── 00113335.png │ ├── 00194480.png │ ├── 00224794.png │ ├── 00265834.png │ ├── 00341293.png │ ├── 00349638.png │ ├── 00377104.png │ ├── 00379444.png │ ├── 00411097.png │ ├── 00492185.png │ ├── 00494163.png │ ├── 00494429.png │ ├── 00518667.png │ ├── P1020871.png │ ├── P1020912.png │ ├── P1080020.png │ ├── P1080032.png │ ├── S000019.png │ ├── S000034.png │ ├── S000038.png │ ├── S000041.png │ ├── S000057.png │ └── S000097.png └── spherical │ ├── 000001.png │ ├── 000011.png │ ├── 000014.png │ ├── 000096.png │ ├── 000113.png │ ├── 000131.png │ ├── 000135.png │ ├── 000152.png │ ├── 000171.png │ ├── 000206.png │ ├── 000212.png │ ├── 000218.png │ ├── 000252.png │ ├── 000255.png │ ├── 000268.png │ ├── 000277.png │ ├── 000298.png │ ├── 000303.png │ ├── 000316.png │ ├── 000321.png │ ├── 000325.png │ ├── 000329.png │ ├── 000360.png │ ├── 000380.png │ ├── 000400.png │ ├── 000433.png │ ├── 000439.png │ ├── 000441.png │ ├── 000447.png │ ├── 000467.png │ ├── 000468.png │ ├── 000469.png │ ├── 000470.png │ ├── 000478.png │ ├── 000800.png │ ├── 001100.png │ ├── R0010262.png │ ├── R0010264.png │ ├── R0010265.png │ ├── R0010267.png │ ├── R0010268.png │ ├── R0010269.png │ ├── R0010270.png │ └── R0010362.png ├── figure ├── Network.png ├── fisheye_result.png ├── fisheyes.png ├── fwireframe-sAP10.pdf ├── fyork-sAP10.pdf ├── pinhole_result.png ├── pinholes.png ├── spherical_result.png ├── sphericals.png ├── sun360-sAP10.pdf ├── video.png ├── wireframe-APH.pdf ├── wireframe-sAP10.pdf ├── york-APH.pdf └── york-sAP10.pdf ├── metric ├── eval_APH.py ├── eval_mAPJ.py ├── eval_metric.py ├── eval_sAP.py └── matlab │ ├── correspondPixels.mexa64 │ ├── correspondPixels.mexmaci64 │ └── eval_release.m ├── network ├── dataset.py ├── lcnn.py ├── line_proposal_network.py ├── loi_head.py └── stacked_hourglass_network.py ├── requirements.txt ├── test.py ├── train.py └── util ├── augment.py ├── bezier.py └── camera.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/README.md -------------------------------------------------------------------------------- /config/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/config/cfg.py -------------------------------------------------------------------------------- /config/fisheye.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/config/fisheye.yaml -------------------------------------------------------------------------------- /config/pinhole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/config/pinhole.yaml -------------------------------------------------------------------------------- /config/spherical.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/config/spherical.yaml -------------------------------------------------------------------------------- /dataset/fisheye/00035326.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00035326.png -------------------------------------------------------------------------------- /dataset/fisheye/00037869.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00037869.png -------------------------------------------------------------------------------- /dataset/fisheye/00050273.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00050273.png -------------------------------------------------------------------------------- /dataset/fisheye/00059148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00059148.png -------------------------------------------------------------------------------- /dataset/fisheye/00060621.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00060621.png -------------------------------------------------------------------------------- /dataset/fisheye/00060792.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00060792.png -------------------------------------------------------------------------------- /dataset/fisheye/00060942.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00060942.png -------------------------------------------------------------------------------- /dataset/fisheye/00066618.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00066618.png -------------------------------------------------------------------------------- /dataset/fisheye/00067223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00067223.png -------------------------------------------------------------------------------- /dataset/fisheye/00071593.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00071593.png -------------------------------------------------------------------------------- /dataset/fisheye/00071845.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00071845.png -------------------------------------------------------------------------------- /dataset/fisheye/00075125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00075125.png -------------------------------------------------------------------------------- /dataset/fisheye/00076000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00076000.png -------------------------------------------------------------------------------- /dataset/fisheye/00076567.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00076567.png -------------------------------------------------------------------------------- /dataset/fisheye/00113788.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00113788.png -------------------------------------------------------------------------------- /dataset/fisheye/00221581.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00221581.png -------------------------------------------------------------------------------- /dataset/fisheye/00249234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00249234.png -------------------------------------------------------------------------------- /dataset/fisheye/00294226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00294226.png -------------------------------------------------------------------------------- /dataset/fisheye/00302536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00302536.png -------------------------------------------------------------------------------- /dataset/fisheye/00509230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/00509230.png -------------------------------------------------------------------------------- /dataset/fisheye/1_000151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/1_000151.png -------------------------------------------------------------------------------- /dataset/fisheye/1_000222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/1_000222.png -------------------------------------------------------------------------------- /dataset/fisheye/1_000318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/1_000318.png -------------------------------------------------------------------------------- /dataset/fisheye/1_000356.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/1_000356.png -------------------------------------------------------------------------------- /dataset/fisheye/1_000374.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/1_000374.png -------------------------------------------------------------------------------- /dataset/fisheye/2_000004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/2_000004.png -------------------------------------------------------------------------------- /dataset/fisheye/2_000022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/2_000022.png -------------------------------------------------------------------------------- /dataset/fisheye/2_000063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/2_000063.png -------------------------------------------------------------------------------- /dataset/fisheye/2_000117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/2_000117.png -------------------------------------------------------------------------------- /dataset/fisheye/2_000142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/2_000142.png -------------------------------------------------------------------------------- /dataset/fisheye/2_000306.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/2_000306.png -------------------------------------------------------------------------------- /dataset/fisheye/2_000374.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/2_000374.png -------------------------------------------------------------------------------- /dataset/fisheye/2_000441.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/2_000441.png -------------------------------------------------------------------------------- /dataset/fisheye/P1020824.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/P1020824.png -------------------------------------------------------------------------------- /dataset/fisheye/P1020872.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/P1020872.png -------------------------------------------------------------------------------- /dataset/fisheye/P1040818.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/fisheye/P1040818.png -------------------------------------------------------------------------------- /dataset/json2npz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/json2npz.py -------------------------------------------------------------------------------- /dataset/json2npz_gt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/json2npz_gt.py -------------------------------------------------------------------------------- /dataset/pinhole/00031591.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00031591.png -------------------------------------------------------------------------------- /dataset/pinhole/00031797.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00031797.png -------------------------------------------------------------------------------- /dataset/pinhole/00064064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00064064.png -------------------------------------------------------------------------------- /dataset/pinhole/00076246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00076246.png -------------------------------------------------------------------------------- /dataset/pinhole/00079423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00079423.png -------------------------------------------------------------------------------- /dataset/pinhole/00079704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00079704.png -------------------------------------------------------------------------------- /dataset/pinhole/00102235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00102235.png -------------------------------------------------------------------------------- /dataset/pinhole/00102389.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00102389.png -------------------------------------------------------------------------------- /dataset/pinhole/00103410.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00103410.png -------------------------------------------------------------------------------- /dataset/pinhole/00104272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00104272.png -------------------------------------------------------------------------------- /dataset/pinhole/00110879.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00110879.png -------------------------------------------------------------------------------- /dataset/pinhole/00113178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00113178.png -------------------------------------------------------------------------------- /dataset/pinhole/00113335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00113335.png -------------------------------------------------------------------------------- /dataset/pinhole/00194480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00194480.png -------------------------------------------------------------------------------- /dataset/pinhole/00224794.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00224794.png -------------------------------------------------------------------------------- /dataset/pinhole/00265834.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00265834.png -------------------------------------------------------------------------------- /dataset/pinhole/00341293.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00341293.png -------------------------------------------------------------------------------- /dataset/pinhole/00349638.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00349638.png -------------------------------------------------------------------------------- /dataset/pinhole/00377104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00377104.png -------------------------------------------------------------------------------- /dataset/pinhole/00379444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00379444.png -------------------------------------------------------------------------------- /dataset/pinhole/00411097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00411097.png -------------------------------------------------------------------------------- /dataset/pinhole/00492185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00492185.png -------------------------------------------------------------------------------- /dataset/pinhole/00494163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00494163.png -------------------------------------------------------------------------------- /dataset/pinhole/00494429.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00494429.png -------------------------------------------------------------------------------- /dataset/pinhole/00518667.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/00518667.png -------------------------------------------------------------------------------- /dataset/pinhole/P1020871.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/P1020871.png -------------------------------------------------------------------------------- /dataset/pinhole/P1020912.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/P1020912.png -------------------------------------------------------------------------------- /dataset/pinhole/P1080020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/P1080020.png -------------------------------------------------------------------------------- /dataset/pinhole/P1080032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/P1080032.png -------------------------------------------------------------------------------- /dataset/pinhole/S000019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/S000019.png -------------------------------------------------------------------------------- /dataset/pinhole/S000034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/S000034.png -------------------------------------------------------------------------------- /dataset/pinhole/S000038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/S000038.png -------------------------------------------------------------------------------- /dataset/pinhole/S000041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/S000041.png -------------------------------------------------------------------------------- /dataset/pinhole/S000057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/S000057.png -------------------------------------------------------------------------------- /dataset/pinhole/S000097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/pinhole/S000097.png -------------------------------------------------------------------------------- /dataset/spherical/000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000001.png -------------------------------------------------------------------------------- /dataset/spherical/000011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000011.png -------------------------------------------------------------------------------- /dataset/spherical/000014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000014.png -------------------------------------------------------------------------------- /dataset/spherical/000096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000096.png -------------------------------------------------------------------------------- /dataset/spherical/000113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000113.png -------------------------------------------------------------------------------- /dataset/spherical/000131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000131.png -------------------------------------------------------------------------------- /dataset/spherical/000135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000135.png -------------------------------------------------------------------------------- /dataset/spherical/000152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000152.png -------------------------------------------------------------------------------- /dataset/spherical/000171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000171.png -------------------------------------------------------------------------------- /dataset/spherical/000206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000206.png -------------------------------------------------------------------------------- /dataset/spherical/000212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000212.png -------------------------------------------------------------------------------- /dataset/spherical/000218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000218.png -------------------------------------------------------------------------------- /dataset/spherical/000252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000252.png -------------------------------------------------------------------------------- /dataset/spherical/000255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000255.png -------------------------------------------------------------------------------- /dataset/spherical/000268.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000268.png -------------------------------------------------------------------------------- /dataset/spherical/000277.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000277.png -------------------------------------------------------------------------------- /dataset/spherical/000298.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000298.png -------------------------------------------------------------------------------- /dataset/spherical/000303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000303.png -------------------------------------------------------------------------------- /dataset/spherical/000316.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000316.png -------------------------------------------------------------------------------- /dataset/spherical/000321.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000321.png -------------------------------------------------------------------------------- /dataset/spherical/000325.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000325.png -------------------------------------------------------------------------------- /dataset/spherical/000329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000329.png -------------------------------------------------------------------------------- /dataset/spherical/000360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000360.png -------------------------------------------------------------------------------- /dataset/spherical/000380.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000380.png -------------------------------------------------------------------------------- /dataset/spherical/000400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000400.png -------------------------------------------------------------------------------- /dataset/spherical/000433.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000433.png -------------------------------------------------------------------------------- /dataset/spherical/000439.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000439.png -------------------------------------------------------------------------------- /dataset/spherical/000441.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000441.png -------------------------------------------------------------------------------- /dataset/spherical/000447.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000447.png -------------------------------------------------------------------------------- /dataset/spherical/000467.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000467.png -------------------------------------------------------------------------------- /dataset/spherical/000468.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000468.png -------------------------------------------------------------------------------- /dataset/spherical/000469.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000469.png -------------------------------------------------------------------------------- /dataset/spherical/000470.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000470.png -------------------------------------------------------------------------------- /dataset/spherical/000478.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000478.png -------------------------------------------------------------------------------- /dataset/spherical/000800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/000800.png -------------------------------------------------------------------------------- /dataset/spherical/001100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/001100.png -------------------------------------------------------------------------------- /dataset/spherical/R0010262.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/R0010262.png -------------------------------------------------------------------------------- /dataset/spherical/R0010264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/R0010264.png -------------------------------------------------------------------------------- /dataset/spherical/R0010265.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/R0010265.png -------------------------------------------------------------------------------- /dataset/spherical/R0010267.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/R0010267.png -------------------------------------------------------------------------------- /dataset/spherical/R0010268.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/R0010268.png -------------------------------------------------------------------------------- /dataset/spherical/R0010269.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/R0010269.png -------------------------------------------------------------------------------- /dataset/spherical/R0010270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/R0010270.png -------------------------------------------------------------------------------- /dataset/spherical/R0010362.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/dataset/spherical/R0010362.png -------------------------------------------------------------------------------- /figure/Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/Network.png -------------------------------------------------------------------------------- /figure/fisheye_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/fisheye_result.png -------------------------------------------------------------------------------- /figure/fisheyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/fisheyes.png -------------------------------------------------------------------------------- /figure/fwireframe-sAP10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/fwireframe-sAP10.pdf -------------------------------------------------------------------------------- /figure/fyork-sAP10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/fyork-sAP10.pdf -------------------------------------------------------------------------------- /figure/pinhole_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/pinhole_result.png -------------------------------------------------------------------------------- /figure/pinholes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/pinholes.png -------------------------------------------------------------------------------- /figure/spherical_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/spherical_result.png -------------------------------------------------------------------------------- /figure/sphericals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/sphericals.png -------------------------------------------------------------------------------- /figure/sun360-sAP10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/sun360-sAP10.pdf -------------------------------------------------------------------------------- /figure/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/video.png -------------------------------------------------------------------------------- /figure/wireframe-APH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/wireframe-APH.pdf -------------------------------------------------------------------------------- /figure/wireframe-sAP10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/wireframe-sAP10.pdf -------------------------------------------------------------------------------- /figure/york-APH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/york-APH.pdf -------------------------------------------------------------------------------- /figure/york-sAP10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/figure/york-sAP10.pdf -------------------------------------------------------------------------------- /metric/eval_APH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/metric/eval_APH.py -------------------------------------------------------------------------------- /metric/eval_mAPJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/metric/eval_mAPJ.py -------------------------------------------------------------------------------- /metric/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/metric/eval_metric.py -------------------------------------------------------------------------------- /metric/eval_sAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/metric/eval_sAP.py -------------------------------------------------------------------------------- /metric/matlab/correspondPixels.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/metric/matlab/correspondPixels.mexa64 -------------------------------------------------------------------------------- /metric/matlab/correspondPixels.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/metric/matlab/correspondPixels.mexmaci64 -------------------------------------------------------------------------------- /metric/matlab/eval_release.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/metric/matlab/eval_release.m -------------------------------------------------------------------------------- /network/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/network/dataset.py -------------------------------------------------------------------------------- /network/lcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/network/lcnn.py -------------------------------------------------------------------------------- /network/line_proposal_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/network/line_proposal_network.py -------------------------------------------------------------------------------- /network/loi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/network/loi_head.py -------------------------------------------------------------------------------- /network/stacked_hourglass_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/network/stacked_hourglass_network.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/train.py -------------------------------------------------------------------------------- /util/augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/util/augment.py -------------------------------------------------------------------------------- /util/bezier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/util/bezier.py -------------------------------------------------------------------------------- /util/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh9171338/Unified-Line-Segment-Detection/HEAD/util/camera.py --------------------------------------------------------------------------------