README.md 901 Bytes
Newer Older
Hu Yi's avatar
Hu Yi committed
1
2
# CSST-COMMOM-CRMASK

Hu Yi's avatar
Hu Yi committed
3
4
detect cosmic rays and mask them 

Hu Yi's avatar
Hu Yi committed
5
# 软件依赖
Hu Yi's avatar
Hu Yi committed
6

7
依赖的python包numpy, scipy, matplotlib, astropy, ccdproc, pytorch, deepCR
Hu Yi's avatar
Hu Yi committed
8
9
10
11
12

Ubuntu 20.04系统下安装方法

sudo apt install python3-numpy python3-scipy python3-matplotlib python3-astropy python3-ccdproc

13
python3 -m pip install pytorch deepCR
Hu Yi's avatar
Hu Yi committed
14

Hu Yi's avatar
Hu Yi committed
15
# 使用方法
Hu Yi's avatar
Hu Yi committed
16
17
18
19
20
21
22

下载crmask.py,crmask.ini这两个文件。

./crmask.py your_file.fits your_model

其中your_file.fits是输入fits文件,your_model是扣除宇宙线的方法,可以是deepCR或者lacosmic。

Hu Yi's avatar
Hu Yi committed
23
24
25
26
如果需要使用CSST仿真数据训练得到的模型扣除宇宙线,下载CSST_2021-12-30_CCD23_epoch20.pth,该模型隐藏层数为50。

# 注意

Hu Yi's avatar
Hu Yi committed
27
28
输入图像必须减BIASBIAS,切记!!最好做过平场改正。

Hu Yi's avatar
Hu Yi committed
29
如果使用deepCR自带用HST/ACS数据训练得到的模型,在配置文件中,要将hidden这个配置参数改为32。
Hu Yi's avatar
Hu Yi committed
30
31


Hu Yi's avatar
Hu Yi committed
32