# BASNet **Repository Path**: HEART1/BASNet ## Basic Information - **Project Name**: BASNet - **Description**: Code for CVPR 2019 paper. BASNet: Boundary-Aware Salient Object Detection - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-10-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # BASNet Code for CVPR 2019 paper '[*BASNet: Boundary-Aware Salient Object Detection*](http://openaccess.thecvf.com/content_CVPR_2019/html/Qin_BASNet_Boundary-Aware_Salient_Object_Detection_CVPR_2019_paper.html)', [Xuebin Qin](https://webdocs.cs.ualberta.ca/~xuebin/), Zichen Zhang, Chenyang Huang, Chao Gao, Masood Dehghan and Martin Jagersand. __Contact__: xuebin[at]ualberta[dot]ca ## Required libraries Python 3.6 numpy 1.15.2 scikit-image 0.14.0 PIL 5.2.0 PyTorch 0.4.0 torchvision 0.2.1 glob The SSIM loss is adapted from [pytorch-ssim](https://github.com/Po-Hsun-Su/pytorch-ssim/blob/master/pytorch_ssim/__init__.py). ## Usage 1. Clone this repo ``` git clone https://github.com/NathanUA/BASNet.git ``` 2. Download the pre-trained model [basnet.pth](https://drive.google.com/open?id=1s52ek_4YTDRt_EOkx1FS53u-vJa0c4nu) and put it into the dirctory 'saved_models/basnet_bsi/' 3. Cd to the directory 'BASNet', run the training or inference process by command: ```python basnet_train.py``` or ```python basnet_test.py``` respectively. We also provide the predicted [saliency maps](https://drive.google.com/file/d/1K9y9HpupXT0RJ4U4OizJ_Uk5byUyCupK/view?usp=sharing) for datasets SOD, ECSSD, DUT-OMRON, PASCAL-S, HKU-IS and DUTS-TE. ## Architecture ![BASNet architecture](figures/architecture.png) ## Quantitative Comparison ![Quantitative Comparison](figures/quan.png) ## Qualitative Comparison ![Qualitative Comparison](figures/qual.png) ## Citation ``` @InProceedings{Qin_2019_CVPR, author = {Qin, Xuebin and Zhang, Zichen and Huang, Chenyang and Gao, Chao and Dehghan, Masood and Jagersand, Martin}, title = {BASNet: Boundary-Aware Salient Object Detection}, booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)}, month = {June}, year = {2019} } ```