├── .gitignore ├── LICENSE ├── README.md ├── dataset ├── S1 │ ├── gt_images │ │ ├── img0.png │ │ ├── img1.png │ │ ├── img10.png │ │ ├── img11.png │ │ ├── img12.png │ │ ├── img13.png │ │ ├── img14.png │ │ ├── img15.png │ │ ├── img16.png │ │ ├── img17.png │ │ ├── img18.png │ │ ├── img19.png │ │ ├── img2.png │ │ ├── img20.png │ │ ├── img21.png │ │ ├── img22.png │ │ ├── img23.png │ │ ├── img24.png │ │ ├── img25.png │ │ ├── img26.png │ │ ├── img27.png │ │ ├── img28.png │ │ ├── img29.png │ │ ├── img3.png │ │ ├── img30.png │ │ ├── img31.png │ │ ├── img32.png │ │ ├── img33.png │ │ ├── img34.png │ │ ├── img35.png │ │ ├── img36.png │ │ ├── img37.png │ │ ├── img38.png │ │ ├── img39.png │ │ ├── img4.png │ │ ├── img40.png │ │ ├── img41.png │ │ ├── img42.png │ │ ├── img43.png │ │ ├── img44.png │ │ ├── img45.png │ │ ├── img46.png │ │ ├── img47.png │ │ ├── img48.png │ │ ├── img49.png │ │ ├── img5.png │ │ ├── img50.png │ │ ├── img51.png │ │ ├── img52.png │ │ ├── img53.png │ │ ├── img54.png │ │ ├── img55.png │ │ ├── img56.png │ │ ├── img57.png │ │ ├── img58.png │ │ ├── img59.png │ │ ├── img6.png │ │ ├── img60.png │ │ ├── img61.png │ │ ├── img62.png │ │ ├── img63.png │ │ ├── img64.png │ │ ├── img65.png │ │ ├── img66.png │ │ ├── img67.png │ │ ├── img68.png │ │ ├── img69.png │ │ ├── img7.png │ │ ├── img70.png │ │ ├── img71.png │ │ ├── img72.png │ │ ├── img73.png │ │ ├── img74.png │ │ ├── img75.png │ │ ├── img76.png │ │ ├── img77.png │ │ ├── img78.png │ │ ├── img79.png │ │ ├── img8.png │ │ ├── img80.png │ │ ├── img81.png │ │ ├── img82.png │ │ ├── img83.png │ │ ├── img84.png │ │ ├── img85.png │ │ ├── img86.png │ │ ├── img87.png │ │ ├── img88.png │ │ ├── img89.png │ │ ├── img9.png │ │ ├── img90.png │ │ ├── img91.png │ │ ├── img92.png │ │ ├── img93.png │ │ ├── img94.png │ │ ├── img95.png │ │ ├── img96.png │ │ ├── img97.png │ │ ├── img98.png │ │ └── img99.png │ ├── gt_labels │ │ ├── img0.npy │ │ ├── img1.npy │ │ ├── img10.npy │ │ ├── img11.npy │ │ ├── img12.npy │ │ ├── img13.npy │ │ ├── img14.npy │ │ ├── img15.npy │ │ ├── img16.npy │ │ ├── img17.npy │ │ ├── img18.npy │ │ ├── img19.npy │ │ ├── img2.npy │ │ ├── img20.npy │ │ ├── img21.npy │ │ ├── img22.npy │ │ ├── img23.npy │ │ ├── img24.npy │ │ ├── img25.npy │ │ ├── img26.npy │ │ ├── img27.npy │ │ ├── img28.npy │ │ ├── img29.npy │ │ ├── img3.npy │ │ ├── img30.npy │ │ ├── img31.npy │ │ ├── img32.npy │ │ ├── img33.npy │ │ ├── img34.npy │ │ ├── img35.npy │ │ ├── img36.npy │ │ ├── img37.npy │ │ ├── img38.npy │ │ ├── img39.npy │ │ ├── img4.npy │ │ ├── img40.npy │ │ ├── img41.npy │ │ ├── img42.npy │ │ ├── img43.npy │ │ ├── img44.npy │ │ ├── img45.npy │ │ ├── img46.npy │ │ ├── img47.npy │ │ ├── img48.npy │ │ ├── img49.npy │ │ ├── img5.npy │ │ ├── img50.npy │ │ ├── img51.npy │ │ ├── img52.npy │ │ ├── img53.npy │ │ ├── img54.npy │ │ ├── img55.npy │ │ ├── img56.npy │ │ ├── img57.npy │ │ ├── img58.npy │ │ ├── img59.npy │ │ ├── img6.npy │ │ ├── img60.npy │ │ ├── img61.npy │ │ ├── img62.npy │ │ ├── img63.npy │ │ ├── img64.npy │ │ ├── img65.npy │ │ ├── img66.npy │ │ ├── img67.npy │ │ ├── img68.npy │ │ ├── img69.npy │ │ ├── img7.npy │ │ ├── img70.npy │ │ ├── img71.npy │ │ ├── img72.npy │ │ ├── img73.npy │ │ ├── img74.npy │ │ ├── img75.npy │ │ ├── img76.npy │ │ ├── img77.npy │ │ ├── img78.npy │ │ ├── img79.npy │ │ ├── img8.npy │ │ ├── img80.npy │ │ ├── img81.npy │ │ ├── img82.npy │ │ ├── img83.npy │ │ ├── img84.npy │ │ ├── img85.npy │ │ ├── img86.npy │ │ ├── img87.npy │ │ ├── img88.npy │ │ ├── img89.npy │ │ ├── img9.npy │ │ ├── img90.npy │ │ ├── img91.npy │ │ ├── img92.npy │ │ ├── img93.npy │ │ ├── img94.npy │ │ ├── img95.npy │ │ ├── img96.npy │ │ ├── img97.npy │ │ ├── img98.npy │ │ └── img99.npy │ └── images │ │ ├── img0.jpg │ │ ├── img1.jpg │ │ ├── img10.jpg │ │ ├── img11.jpg │ │ ├── img12.jpg │ │ ├── img13.jpg │ │ ├── img14.jpg │ │ ├── img15.jpg │ │ ├── img16.jpg │ │ ├── img17.jpg │ │ ├── img18.jpg │ │ ├── img19.jpg │ │ ├── img2.jpg │ │ ├── img20.jpg │ │ ├── img21.jpg │ │ ├── img22.jpg │ │ ├── img23.jpg │ │ ├── img24.jpg │ │ ├── img25.jpg │ │ ├── img26.jpg │ │ ├── img27.jpg │ │ ├── img28.jpg │ │ ├── img29.jpg │ │ ├── img3.jpg │ │ ├── img30.jpg │ │ ├── img31.jpg │ │ ├── img32.jpg │ │ ├── img33.jpg │ │ ├── img34.jpg │ │ ├── img35.jpg │ │ ├── img36.jpg │ │ ├── img37.jpg │ │ ├── img38.jpg │ │ ├── img39.jpg │ │ ├── img4.jpg │ │ ├── img40.jpg │ │ ├── img41.jpg │ │ ├── img42.jpg │ │ ├── img43.jpg │ │ ├── img44.jpg │ │ ├── img45.jpg │ │ ├── img46.jpg │ │ ├── img47.jpg │ │ ├── img48.jpg │ │ ├── img49.jpg │ │ ├── img5.jpg │ │ ├── img50.jpg │ │ ├── img51.jpg │ │ ├── img52.jpg │ │ ├── img53.jpg │ │ ├── img54.jpg │ │ ├── img55.jpg │ │ ├── img56.jpg │ │ ├── img57.jpg │ │ ├── img58.jpg │ │ ├── img59.jpg │ │ ├── img6.jpg │ │ ├── img60.jpg │ │ ├── img61.jpg │ │ ├── img62.jpg │ │ ├── img63.jpg │ │ ├── img64.jpg │ │ ├── img65.jpg │ │ ├── img66.jpg │ │ ├── img67.jpg │ │ ├── img68.jpg │ │ ├── img69.jpg │ │ ├── img7.jpg │ │ ├── img70.jpg │ │ ├── img71.jpg │ │ ├── img72.jpg │ │ ├── img73.jpg │ │ ├── img74.jpg │ │ ├── img75.jpg │ │ ├── img76.jpg │ │ ├── img77.jpg │ │ ├── img78.jpg │ │ ├── img79.jpg │ │ ├── img8.jpg │ │ ├── img80.jpg │ │ ├── img81.jpg │ │ ├── img82.jpg │ │ ├── img83.jpg │ │ ├── img84.jpg │ │ ├── img85.jpg │ │ ├── img86.jpg │ │ ├── img87.jpg │ │ ├── img88.jpg │ │ ├── img89.jpg │ │ ├── img9.jpg │ │ ├── img90.jpg │ │ ├── img91.jpg │ │ ├── img92.jpg │ │ ├── img93.jpg │ │ ├── img94.jpg │ │ ├── img95.jpg │ │ ├── img96.jpg │ │ ├── img97.jpg │ │ ├── img98.jpg │ │ └── img99.jpg ├── S2 │ ├── gt_images │ │ ├── img0.png │ │ ├── img1.png │ │ ├── img10.png │ │ ├── img11.png │ │ ├── img12.png │ │ ├── img13.png │ │ ├── img14.png │ │ ├── img15.png │ │ ├── img16.png │ │ ├── img17.png │ │ ├── img18.png │ │ ├── img19.png │ │ ├── img2.png │ │ ├── img20.png │ │ ├── img21.png │ │ ├── img22.png │ │ ├── img23.png │ │ ├── img24.png │ │ ├── img25.png │ │ ├── img26.png │ │ ├── img27.png │ │ ├── img28.png │ │ ├── img29.png │ │ ├── img3.png │ │ ├── img30.png │ │ ├── img31.png │ │ ├── img32.png │ │ ├── img33.png │ │ ├── img34.png │ │ ├── img35.png │ │ ├── img36.png │ │ ├── img37.png │ │ ├── img38.png │ │ ├── img39.png │ │ ├── img4.png │ │ ├── img40.png │ │ ├── img41.png │ │ ├── img42.png │ │ ├── img43.png │ │ ├── img44.png │ │ ├── img45.png │ │ ├── img46.png │ │ ├── img47.png │ │ ├── img48.png │ │ ├── img49.png │ │ ├── img5.png │ │ ├── img50.png │ │ ├── img51.png │ │ ├── img52.png │ │ ├── img53.png │ │ ├── img54.png │ │ ├── img55.png │ │ ├── img56.png │ │ ├── img57.png │ │ ├── img58.png │ │ ├── img59.png │ │ ├── img6.png │ │ ├── img60.png │ │ ├── img61.png │ │ ├── img62.png │ │ ├── img63.png │ │ ├── img64.png │ │ ├── img65.png │ │ ├── img66.png │ │ ├── img67.png │ │ ├── img68.png │ │ ├── img69.png │ │ ├── img7.png │ │ ├── img70.png │ │ ├── img71.png │ │ ├── img72.png │ │ ├── img73.png │ │ ├── img74.png │ │ ├── img75.png │ │ ├── img76.png │ │ ├── img77.png │ │ ├── img78.png │ │ ├── img79.png │ │ ├── img8.png │ │ ├── img80.png │ │ ├── img81.png │ │ ├── img82.png │ │ ├── img83.png │ │ ├── img84.png │ │ ├── img85.png │ │ ├── img86.png │ │ ├── img87.png │ │ ├── img88.png │ │ ├── img89.png │ │ ├── img9.png │ │ ├── img90.png │ │ ├── img91.png │ │ ├── img92.png │ │ ├── img93.png │ │ ├── img94.png │ │ ├── img95.png │ │ ├── img96.png │ │ ├── img97.png │ │ ├── img98.png │ │ └── img99.png │ ├── gt_labels │ │ ├── img0.npy │ │ ├── img1.npy │ │ ├── img10.npy │ │ ├── img11.npy │ │ ├── img12.npy │ │ ├── img13.npy │ │ ├── img14.npy │ │ ├── img15.npy │ │ ├── img16.npy │ │ ├── img17.npy │ │ ├── img18.npy │ │ ├── img19.npy │ │ ├── img2.npy │ │ ├── img20.npy │ │ ├── img21.npy │ │ ├── img22.npy │ │ ├── img23.npy │ │ ├── img24.npy │ │ ├── img25.npy │ │ ├── img26.npy │ │ ├── img27.npy │ │ ├── img28.npy │ │ ├── img29.npy │ │ ├── img3.npy │ │ ├── img30.npy │ │ ├── img31.npy │ │ ├── img32.npy │ │ ├── img33.npy │ │ ├── img34.npy │ │ ├── img35.npy │ │ ├── img36.npy │ │ ├── img37.npy │ │ ├── img38.npy │ │ ├── img39.npy │ │ ├── img4.npy │ │ ├── img40.npy │ │ ├── img41.npy │ │ ├── img42.npy │ │ ├── img43.npy │ │ ├── img44.npy │ │ ├── img45.npy │ │ ├── img46.npy │ │ ├── img47.npy │ │ ├── img48.npy │ │ ├── img49.npy │ │ ├── img5.npy │ │ ├── img50.npy │ │ ├── img51.npy │ │ ├── img52.npy │ │ ├── img53.npy │ │ ├── img54.npy │ │ ├── img55.npy │ │ ├── img56.npy │ │ ├── img57.npy │ │ ├── img58.npy │ │ ├── img59.npy │ │ ├── img6.npy │ │ ├── img60.npy │ │ ├── img61.npy │ │ ├── img62.npy │ │ ├── img63.npy │ │ ├── img64.npy │ │ ├── img65.npy │ │ ├── img66.npy │ │ ├── img67.npy │ │ ├── img68.npy │ │ ├── img69.npy │ │ ├── img7.npy │ │ ├── img70.npy │ │ ├── img71.npy │ │ ├── img72.npy │ │ ├── img73.npy │ │ ├── img74.npy │ │ ├── img75.npy │ │ ├── img76.npy │ │ ├── img77.npy │ │ ├── img78.npy │ │ ├── img79.npy │ │ ├── img8.npy │ │ ├── img80.npy │ │ ├── img81.npy │ │ ├── img82.npy │ │ ├── img83.npy │ │ ├── img84.npy │ │ ├── img85.npy │ │ ├── img86.npy │ │ ├── img87.npy │ │ ├── img88.npy │ │ ├── img89.npy │ │ ├── img9.npy │ │ ├── img90.npy │ │ ├── img91.npy │ │ ├── img92.npy │ │ ├── img93.npy │ │ ├── img94.npy │ │ ├── img95.npy │ │ ├── img96.npy │ │ ├── img97.npy │ │ ├── img98.npy │ │ └── img99.npy │ └── images │ │ ├── img0.jpg │ │ ├── img1.jpg │ │ ├── img10.jpg │ │ ├── img11.jpg │ │ ├── img12.jpg │ │ ├── img13.jpg │ │ ├── img14.jpg │ │ ├── img15.jpg │ │ ├── img16.jpg │ │ ├── img17.jpg │ │ ├── img18.jpg │ │ ├── img19.jpg │ │ ├── img2.jpg │ │ ├── img20.jpg │ │ ├── img21.jpg │ │ ├── img22.jpg │ │ ├── img23.jpg │ │ ├── img24.jpg │ │ ├── img25.jpg │ │ ├── img26.jpg │ │ ├── img27.jpg │ │ ├── img28.jpg │ │ ├── img29.jpg │ │ ├── img3.jpg │ │ ├── img30.jpg │ │ ├── img31.jpg │ │ ├── img32.jpg │ │ ├── img33.jpg │ │ ├── img34.jpg │ │ ├── img35.jpg │ │ ├── img36.jpg │ │ ├── img37.jpg │ │ ├── img38.jpg │ │ ├── img39.jpg │ │ ├── img4.jpg │ │ ├── img40.jpg │ │ ├── img41.jpg │ │ ├── img42.jpg │ │ ├── img43.jpg │ │ ├── img44.jpg │ │ ├── img45.jpg │ │ ├── img46.jpg │ │ ├── img47.jpg │ │ ├── img48.jpg │ │ ├── img49.jpg │ │ ├── img5.jpg │ │ ├── img50.jpg │ │ ├── img51.jpg │ │ ├── img52.jpg │ │ ├── img53.jpg │ │ ├── img54.jpg │ │ ├── img55.jpg │ │ ├── img56.jpg │ │ ├── img57.jpg │ │ ├── img58.jpg │ │ ├── img59.jpg │ │ ├── img6.jpg │ │ ├── img60.jpg │ │ ├── img61.jpg │ │ ├── img62.jpg │ │ ├── img63.jpg │ │ ├── img64.jpg │ │ ├── img65.jpg │ │ ├── img66.jpg │ │ ├── img67.jpg │ │ ├── img68.jpg │ │ ├── img69.jpg │ │ ├── img7.jpg │ │ ├── img70.jpg │ │ ├── img71.jpg │ │ ├── img72.jpg │ │ ├── img73.jpg │ │ ├── img74.jpg │ │ ├── img75.jpg │ │ ├── img76.jpg │ │ ├── img77.jpg │ │ ├── img78.jpg │ │ ├── img79.jpg │ │ ├── img8.jpg │ │ ├── img80.jpg │ │ ├── img81.jpg │ │ ├── img82.jpg │ │ ├── img83.jpg │ │ ├── img84.jpg │ │ ├── img85.jpg │ │ ├── img86.jpg │ │ ├── img87.jpg │ │ ├── img88.jpg │ │ ├── img89.jpg │ │ ├── img9.jpg │ │ ├── img90.jpg │ │ ├── img91.jpg │ │ ├── img92.jpg │ │ ├── img93.jpg │ │ ├── img94.jpg │ │ ├── img95.jpg │ │ ├── img96.jpg │ │ ├── img97.jpg │ │ ├── img98.jpg │ │ └── img99.jpg └── S3 │ ├── gt_images │ ├── img0.png │ ├── img1.png │ ├── img10.png │ ├── img11.png │ ├── img12.png │ ├── img13.png │ ├── img14.png │ ├── img15.png │ ├── img16.png │ ├── img17.png │ ├── img18.png │ ├── img19.png │ ├── img2.png │ ├── img20.png │ ├── img21.png │ ├── img22.png │ ├── img23.png │ ├── img24.png │ ├── img25.png │ ├── img26.png │ ├── img27.png │ ├── img28.png │ ├── img29.png │ ├── img3.png │ ├── img30.png │ ├── img31.png │ ├── img32.png │ ├── img33.png │ ├── img34.png │ ├── img35.png │ ├── img36.png │ ├── img37.png │ ├── img38.png │ ├── img39.png │ ├── img4.png │ ├── img40.png │ ├── img41.png │ ├── img42.png │ ├── img43.png │ ├── img44.png │ ├── img45.png │ ├── img46.png │ ├── img47.png │ ├── img48.png │ ├── img49.png │ ├── img5.png │ ├── img50.png │ ├── img51.png │ ├── img52.png │ ├── img53.png │ ├── img54.png │ ├── img55.png │ ├── img56.png │ ├── img57.png │ ├── img58.png │ ├── img59.png │ ├── img6.png │ ├── img60.png │ ├── img61.png │ ├── img62.png │ ├── img63.png │ ├── img64.png │ ├── img65.png │ ├── img66.png │ ├── img67.png │ ├── img68.png │ ├── img69.png │ ├── img7.png │ ├── img70.png │ ├── img71.png │ ├── img72.png │ ├── img73.png │ ├── img74.png │ ├── img75.png │ ├── img76.png │ ├── img77.png │ ├── img78.png │ ├── img79.png │ ├── img8.png │ ├── img80.png │ ├── img81.png │ ├── img82.png │ ├── img83.png │ ├── img84.png │ ├── img85.png │ ├── img86.png │ ├── img87.png │ ├── img88.png │ ├── img89.png │ ├── img9.png │ ├── img90.png │ ├── img91.png │ ├── img92.png │ ├── img93.png │ ├── img94.png │ ├── img95.png │ ├── img96.png │ ├── img97.png │ ├── img98.png │ └── img99.png │ ├── gt_labels │ ├── img0.npy │ ├── img1.npy │ ├── img10.npy │ ├── img11.npy │ ├── img12.npy │ ├── img13.npy │ ├── img14.npy │ ├── img15.npy │ ├── img16.npy │ ├── img17.npy │ ├── img18.npy │ ├── img19.npy │ ├── img2.npy │ ├── img20.npy │ ├── img21.npy │ ├── img22.npy │ ├── img23.npy │ ├── img24.npy │ ├── img25.npy │ ├── img26.npy │ ├── img27.npy │ ├── img28.npy │ ├── img29.npy │ ├── img3.npy │ ├── img30.npy │ ├── img31.npy │ ├── img32.npy │ ├── img33.npy │ ├── img34.npy │ ├── img35.npy │ ├── img36.npy │ ├── img37.npy │ ├── img38.npy │ ├── img39.npy │ ├── img4.npy │ ├── img40.npy │ ├── img41.npy │ ├── img42.npy │ ├── img43.npy │ ├── img44.npy │ ├── img45.npy │ ├── img46.npy │ ├── img47.npy │ ├── img48.npy │ ├── img49.npy │ ├── img5.npy │ ├── img50.npy │ ├── img51.npy │ ├── img52.npy │ ├── img53.npy │ ├── img54.npy │ ├── img55.npy │ ├── img56.npy │ ├── img57.npy │ ├── img58.npy │ ├── img59.npy │ ├── img6.npy │ ├── img60.npy │ ├── img61.npy │ ├── img62.npy │ ├── img63.npy │ ├── img64.npy │ ├── img65.npy │ ├── img66.npy │ ├── img67.npy │ ├── img68.npy │ ├── img69.npy │ ├── img7.npy │ ├── img70.npy │ ├── img71.npy │ ├── img72.npy │ ├── img73.npy │ ├── img74.npy │ ├── img75.npy │ ├── img76.npy │ ├── img77.npy │ ├── img78.npy │ ├── img79.npy │ ├── img8.npy │ ├── img80.npy │ ├── img81.npy │ ├── img82.npy │ ├── img83.npy │ ├── img84.npy │ ├── img85.npy │ ├── img86.npy │ ├── img87.npy │ ├── img88.npy │ ├── img89.npy │ ├── img9.npy │ ├── img90.npy │ ├── img91.npy │ ├── img92.npy │ ├── img93.npy │ ├── img94.npy │ ├── img95.npy │ ├── img96.npy │ ├── img97.npy │ ├── img98.npy │ └── img99.npy │ └── images │ ├── img0.jpg │ ├── img1.jpg │ ├── img10.jpg │ ├── img11.jpg │ ├── img12.jpg │ ├── img13.jpg │ ├── img14.jpg │ ├── img15.jpg │ ├── img16.jpg │ ├── img17.jpg │ ├── img18.jpg │ ├── img19.jpg │ ├── img2.jpg │ ├── img20.jpg │ ├── img21.jpg │ ├── img22.jpg │ ├── img23.jpg │ ├── img24.jpg │ ├── img25.jpg │ ├── img26.jpg │ ├── img27.jpg │ ├── img28.jpg │ ├── img29.jpg │ ├── img3.jpg │ ├── img30.jpg │ ├── img31.jpg │ ├── img32.jpg │ ├── img33.jpg │ ├── img34.jpg │ ├── img35.jpg │ ├── img36.jpg │ ├── img37.jpg │ ├── img38.jpg │ ├── img39.jpg │ ├── img4.jpg │ ├── img40.jpg │ ├── img41.jpg │ ├── img42.jpg │ ├── img43.jpg │ ├── img44.jpg │ ├── img45.jpg │ ├── img46.jpg │ ├── img47.jpg │ ├── img48.jpg │ ├── img49.jpg │ ├── img5.jpg │ ├── img50.jpg │ ├── img51.jpg │ ├── img52.jpg │ ├── img53.jpg │ ├── img54.jpg │ ├── img55.jpg │ ├── img56.jpg │ ├── img57.jpg │ ├── img58.jpg │ ├── img59.jpg │ ├── img6.jpg │ ├── img60.jpg │ ├── img61.jpg │ ├── img62.jpg │ ├── img63.jpg │ ├── img64.jpg │ ├── img65.jpg │ ├── img66.jpg │ ├── img67.jpg │ ├── img68.jpg │ ├── img69.jpg │ ├── img7.jpg │ ├── img70.jpg │ ├── img71.jpg │ ├── img72.jpg │ ├── img73.jpg │ ├── img74.jpg │ ├── img75.jpg │ ├── img76.jpg │ ├── img77.jpg │ ├── img78.jpg │ ├── img79.jpg │ ├── img8.jpg │ ├── img80.jpg │ ├── img81.jpg │ ├── img82.jpg │ ├── img83.jpg │ ├── img84.jpg │ ├── img85.jpg │ ├── img86.jpg │ ├── img87.jpg │ ├── img88.jpg │ ├── img89.jpg │ ├── img9.jpg │ ├── img90.jpg │ ├── img91.jpg │ ├── img92.jpg │ ├── img93.jpg │ ├── img94.jpg │ ├── img95.jpg │ ├── img96.jpg │ ├── img97.jpg │ ├── img98.jpg │ └── img99.jpg ├── figures ├── complex_bg_comparison.png ├── pipeline.png ├── simple_bg_comparison.png └── single_dlo_example.gif ├── install.sh ├── mBEST ├── __init__.py ├── color_masks.py ├── mBEST.py ├── skeletonize │ ├── __init__.py │ └── skeletonize.pyx └── utils │ ├── __init__.py │ ├── numba_utils.py │ └── utils.py ├── run.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__ 3 | build 4 | *.so 5 | *.c 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/README.md -------------------------------------------------------------------------------- /dataset/S1/gt_images/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img0.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img1.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img10.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img11.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img12.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img13.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img14.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img15.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img16.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img17.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img18.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img19.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img2.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img20.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img21.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img22.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img23.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img24.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img25.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img26.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img27.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img28.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img29.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img3.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img30.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img31.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img32.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img33.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img34.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img35.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img36.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img37.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img38.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img39.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img4.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img40.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img41.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img42.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img43.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img44.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img45.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img46.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img47.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img48.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img49.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img5.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img50.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img51.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img52.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img53.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img54.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img55.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img56.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img57.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img58.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img59.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img6.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img60.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img61.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img62.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img63.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img64.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img65.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img66.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img67.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img68.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img69.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img7.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img70.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img71.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img72.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img73.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img74.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img75.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img76.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img77.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img78.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img79.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img8.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img80.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img81.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img82.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img83.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img84.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img85.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img86.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img87.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img88.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img89.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img9.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img90.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img91.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img92.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img93.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img94.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img95.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img96.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img97.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img98.png -------------------------------------------------------------------------------- /dataset/S1/gt_images/img99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_images/img99.png -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img0.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img1.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img10.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img10.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img11.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img11.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img12.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img12.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img13.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img13.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img14.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img14.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img15.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img15.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img16.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img17.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img17.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img18.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img18.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img19.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img19.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img2.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img20.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img21.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img21.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img22.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img22.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img23.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img23.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img24.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img24.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img25.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img25.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img26.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img26.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img27.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img27.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img28.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img28.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img29.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img29.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img3.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img30.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img30.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img31.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img31.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img32.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img33.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img33.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img34.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img34.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img35.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img35.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img36.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img36.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img37.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img37.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img38.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img38.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img39.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img39.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img4.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img40.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img40.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img41.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img41.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img42.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img42.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img43.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img43.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img44.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img44.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img45.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img45.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img46.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img46.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img47.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img47.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img48.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img48.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img49.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img49.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img5.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img5.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img50.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img50.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img51.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img51.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img52.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img52.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img53.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img53.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img54.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img54.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img55.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img55.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img56.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img56.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img57.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img57.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img58.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img58.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img59.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img59.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img6.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img6.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img60.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img60.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img61.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img61.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img62.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img62.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img63.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img63.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img64.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img65.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img65.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img66.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img66.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img67.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img67.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img68.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img68.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img69.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img69.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img7.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img7.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img70.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img70.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img71.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img71.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img72.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img72.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img73.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img73.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img74.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img74.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img75.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img75.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img76.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img76.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img77.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img77.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img78.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img78.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img79.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img79.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img8.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img80.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img80.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img81.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img81.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img82.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img82.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img83.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img83.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img84.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img84.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img85.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img85.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img86.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img86.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img87.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img87.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img88.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img88.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img89.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img89.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img9.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img9.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img90.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img90.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img91.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img91.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img92.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img92.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img93.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img93.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img94.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img94.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img95.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img95.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img96.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img96.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img97.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img97.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img98.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img98.npy -------------------------------------------------------------------------------- /dataset/S1/gt_labels/img99.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/gt_labels/img99.npy -------------------------------------------------------------------------------- /dataset/S1/images/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img0.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img1.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img10.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img11.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img12.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img13.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img14.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img15.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img16.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img17.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img18.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img19.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img2.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img20.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img21.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img22.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img23.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img24.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img25.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img26.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img27.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img28.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img29.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img3.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img30.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img31.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img32.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img33.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img34.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img35.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img36.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img37.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img38.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img39.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img4.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img40.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img41.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img42.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img43.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img44.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img45.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img46.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img47.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img48.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img49.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img5.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img50.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img51.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img52.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img53.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img54.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img55.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img56.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img57.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img58.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img59.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img6.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img60.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img61.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img62.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img63.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img64.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img65.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img66.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img67.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img68.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img69.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img7.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img70.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img71.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img72.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img73.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img74.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img75.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img76.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img77.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img78.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img79.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img8.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img80.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img81.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img82.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img83.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img84.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img85.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img86.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img87.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img88.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img89.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img9.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img90.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img91.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img91.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img92.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img93.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img93.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img94.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img95.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img96.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img97.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img98.jpg -------------------------------------------------------------------------------- /dataset/S1/images/img99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S1/images/img99.jpg -------------------------------------------------------------------------------- /dataset/S2/gt_images/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img0.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img1.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img10.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img11.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img12.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img13.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img14.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img15.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img16.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img17.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img18.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img19.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img2.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img20.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img21.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img22.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img23.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img24.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img25.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img26.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img27.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img28.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img29.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img3.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img30.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img31.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img32.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img33.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img34.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img35.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img36.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img37.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img38.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img39.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img4.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img40.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img41.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img42.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img43.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img44.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img45.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img46.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img47.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img48.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img49.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img5.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img50.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img51.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img52.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img53.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img54.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img55.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img56.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img57.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img58.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img59.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img6.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img60.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img61.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img62.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img63.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img64.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img65.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img66.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img67.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img68.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img69.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img7.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img70.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img71.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img72.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img73.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img74.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img75.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img76.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img77.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img78.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img79.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img8.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img80.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img81.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img82.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img83.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img84.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img85.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img86.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img87.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img88.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img89.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img9.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img90.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img91.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img92.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img93.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img94.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img95.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img96.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img97.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img98.png -------------------------------------------------------------------------------- /dataset/S2/gt_images/img99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_images/img99.png -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img0.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img1.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img10.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img10.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img11.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img11.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img12.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img12.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img13.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img13.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img14.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img14.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img15.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img15.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img16.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img17.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img17.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img18.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img18.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img19.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img19.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img2.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img20.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img21.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img21.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img22.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img22.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img23.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img23.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img24.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img24.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img25.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img25.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img26.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img26.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img27.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img27.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img28.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img28.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img29.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img29.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img3.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img30.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img30.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img31.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img31.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img32.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img33.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img33.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img34.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img34.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img35.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img35.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img36.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img36.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img37.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img37.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img38.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img38.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img39.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img39.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img4.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img40.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img40.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img41.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img41.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img42.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img42.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img43.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img43.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img44.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img44.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img45.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img45.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img46.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img46.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img47.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img47.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img48.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img48.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img49.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img49.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img5.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img5.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img50.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img50.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img51.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img51.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img52.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img52.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img53.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img53.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img54.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img54.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img55.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img55.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img56.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img56.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img57.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img57.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img58.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img58.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img59.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img59.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img6.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img6.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img60.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img60.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img61.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img61.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img62.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img62.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img63.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img63.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img64.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img65.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img65.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img66.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img66.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img67.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img67.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img68.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img68.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img69.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img69.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img7.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img7.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img70.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img70.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img71.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img71.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img72.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img72.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img73.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img73.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img74.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img74.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img75.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img75.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img76.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img76.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img77.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img77.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img78.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img78.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img79.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img79.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img8.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img80.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img80.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img81.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img81.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img82.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img82.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img83.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img83.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img84.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img84.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img85.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img85.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img86.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img86.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img87.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img87.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img88.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img88.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img89.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img89.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img9.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img9.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img90.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img90.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img91.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img91.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img92.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img92.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img93.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img93.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img94.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img94.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img95.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img95.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img96.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img96.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img97.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img97.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img98.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img98.npy -------------------------------------------------------------------------------- /dataset/S2/gt_labels/img99.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/gt_labels/img99.npy -------------------------------------------------------------------------------- /dataset/S2/images/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img0.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img1.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img10.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img11.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img12.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img13.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img14.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img15.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img16.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img17.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img18.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img19.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img2.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img20.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img21.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img22.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img23.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img24.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img25.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img26.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img27.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img28.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img29.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img3.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img30.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img31.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img32.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img33.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img34.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img35.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img36.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img37.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img38.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img39.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img4.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img40.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img41.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img42.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img43.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img44.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img45.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img46.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img47.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img48.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img49.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img5.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img50.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img51.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img52.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img53.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img54.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img55.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img56.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img57.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img58.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img59.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img6.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img60.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img61.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img62.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img63.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img64.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img65.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img66.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img67.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img68.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img69.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img7.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img70.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img71.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img72.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img73.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img74.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img75.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img76.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img77.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img78.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img79.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img8.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img80.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img81.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img82.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img83.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img84.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img85.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img86.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img87.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img88.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img89.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img9.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img90.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img91.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img91.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img92.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img93.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img93.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img94.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img95.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img96.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img97.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img98.jpg -------------------------------------------------------------------------------- /dataset/S2/images/img99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S2/images/img99.jpg -------------------------------------------------------------------------------- /dataset/S3/gt_images/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img0.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img1.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img10.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img11.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img12.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img13.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img14.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img15.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img16.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img17.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img18.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img19.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img2.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img20.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img21.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img22.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img23.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img24.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img25.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img26.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img27.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img28.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img29.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img3.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img30.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img31.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img32.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img33.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img34.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img35.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img36.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img37.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img38.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img39.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img4.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img40.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img41.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img42.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img43.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img44.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img45.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img46.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img47.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img48.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img49.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img5.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img50.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img51.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img52.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img53.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img54.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img55.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img56.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img57.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img58.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img59.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img6.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img60.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img61.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img62.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img63.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img64.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img65.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img66.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img67.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img68.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img69.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img7.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img70.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img71.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img72.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img73.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img74.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img75.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img76.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img77.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img78.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img79.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img8.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img80.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img81.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img82.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img83.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img84.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img85.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img86.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img87.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img88.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img89.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img9.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img90.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img91.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img92.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img93.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img94.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img95.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img96.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img97.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img98.png -------------------------------------------------------------------------------- /dataset/S3/gt_images/img99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_images/img99.png -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img0.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img1.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img10.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img10.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img11.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img11.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img12.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img12.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img13.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img13.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img14.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img14.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img15.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img15.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img16.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img17.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img17.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img18.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img18.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img19.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img19.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img2.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img20.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img21.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img21.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img22.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img22.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img23.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img23.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img24.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img24.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img25.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img25.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img26.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img26.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img27.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img27.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img28.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img28.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img29.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img29.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img3.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img30.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img30.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img31.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img31.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img32.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img33.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img33.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img34.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img34.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img35.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img35.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img36.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img36.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img37.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img37.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img38.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img38.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img39.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img39.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img4.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img40.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img40.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img41.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img41.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img42.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img42.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img43.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img43.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img44.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img44.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img45.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img45.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img46.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img46.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img47.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img47.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img48.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img48.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img49.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img49.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img5.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img5.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img50.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img50.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img51.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img51.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img52.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img52.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img53.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img53.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img54.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img54.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img55.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img55.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img56.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img56.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img57.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img57.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img58.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img58.npy -------------------------------------------------------------------------------- /dataset/S3/gt_labels/img59.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/gt_labels/img59.npy -------------------------------------------------------------------------------- /dataset/S3/images/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img0.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img1.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img10.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img11.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img12.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img13.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img14.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img15.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img16.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img17.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img18.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img19.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img2.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img20.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img21.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img22.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img23.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img24.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img25.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img26.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img27.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img28.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img29.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img3.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img30.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img31.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img32.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img33.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img34.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img35.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img36.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img37.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img38.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img39.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img4.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img40.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img41.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img42.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img43.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img44.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img45.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img46.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img47.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img48.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img49.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img5.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img50.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img51.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img52.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img53.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img54.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img55.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img56.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img57.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img58.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img59.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img6.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img60.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img61.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img62.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img63.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img64.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img65.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img66.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img67.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img68.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img69.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img7.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img70.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img71.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img72.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img73.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img74.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img75.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img76.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img77.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img78.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img79.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img8.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img80.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img81.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img82.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img83.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img84.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img85.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img86.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img87.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img88.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img89.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img9.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img90.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img91.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img91.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img92.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img93.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img93.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img94.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img95.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img96.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img97.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img98.jpg -------------------------------------------------------------------------------- /dataset/S3/images/img99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/dataset/S3/images/img99.jpg -------------------------------------------------------------------------------- /figures/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/figures/pipeline.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/install.sh -------------------------------------------------------------------------------- /mBEST/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/mBEST/__init__.py -------------------------------------------------------------------------------- /mBEST/color_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/mBEST/color_masks.py -------------------------------------------------------------------------------- /mBEST/mBEST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/mBEST/mBEST.py -------------------------------------------------------------------------------- /mBEST/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/mBEST/utils/__init__.py -------------------------------------------------------------------------------- /mBEST/utils/numba_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/mBEST/utils/numba_utils.py -------------------------------------------------------------------------------- /mBEST/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/mBEST/utils/utils.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/run.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StructuresComp/mBEST/HEAD/setup.py --------------------------------------------------------------------------------