skinoptics 0.0.5__py3-none-any.whl → 0.0.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- skinoptics/__init__.py +1 -1
- skinoptics/dataframes.py +8 -5
- {skinoptics-0.0.5.dist-info → skinoptics-0.0.7.dist-info}/METADATA +3 -3
- {skinoptics-0.0.5.dist-info → skinoptics-0.0.7.dist-info}/RECORD +7 -7
- {skinoptics-0.0.5.dist-info → skinoptics-0.0.7.dist-info}/WHEEL +0 -0
- {skinoptics-0.0.5.dist-info → skinoptics-0.0.7.dist-info}/licenses/LICENSE.txt +0 -0
- {skinoptics-0.0.5.dist-info → skinoptics-0.0.7.dist-info}/top_level.txt +0 -0
skinoptics/__init__.py
CHANGED
skinoptics/dataframes.py
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
| Release date:
|
23
23
|
| October 2024
|
24
24
|
| Last modification:
|
25
|
-
|
|
25
|
+
| October 2025
|
26
26
|
|
27
27
|
| Example:
|
28
28
|
| Lab_Alaluf2002_dataframe (respective to datasets/colors/Lab_Alaluf2002.txt)
|
@@ -53,6 +53,7 @@
|
|
53
53
|
'''
|
54
54
|
|
55
55
|
import os
|
56
|
+
import numpy as np
|
56
57
|
import pandas as pd
|
57
58
|
|
58
59
|
folder0 = os.path.dirname(os.path.abspath(__file__))
|
@@ -99,7 +100,9 @@ Sharma2004_TableI_dataframe = pd.read_csv(os.path.join(folder2, 'Sharma2004_Tabl
|
|
99
100
|
|
100
101
|
folder3 = os.path.join(folder0, 'datasets', 'spectra')
|
101
102
|
|
102
|
-
Xiao2016_dataframe
|
103
|
-
|
104
|
-
|
105
|
-
|
103
|
+
def Xiao2016_dataframe():
|
104
|
+
return pd.read_excel(os.path.join(folder3, 'Xiao2016', 'skindatabaseSpectra', 'skin_spectra_data.xlsx'))
|
105
|
+
|
106
|
+
def Lu2025_dataframe():
|
107
|
+
return pd.read_excel(os.path.join(folder3, 'Lu2025', 'ISSA_17_Jan_2025_Yan_Lu.xlsx'),
|
108
|
+
sheet_name = 'ISSA', header = 0, skiprows = 11).replace('nan', np.nan)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: skinoptics
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.7
|
4
4
|
Summary: SkinOptics: a python package with tools for building human skin computational models for Monte Carlo simulations of light transport
|
5
5
|
Author-email: Victor Lima <victor.lima@ufscar.br>
|
6
6
|
Project-URL: Homepage, https://github.com/victorportog/skinoptics
|
@@ -10,8 +10,8 @@ Classifier: Operating System :: Microsoft :: Windows :: Windows 10
|
|
10
10
|
Requires-Python: >=3.8
|
11
11
|
Description-Content-Type: text/markdown
|
12
12
|
License-File: LICENSE.txt
|
13
|
-
Requires-Dist: numpy<3.0.0,>=2.3.
|
14
|
-
Requires-Dist: scipy<2.0.0,>=1.
|
13
|
+
Requires-Dist: numpy<3.0.0,>=2.3.0
|
14
|
+
Requires-Dist: scipy<2.0.0,>=1.16.0
|
15
15
|
Requires-Dist: pandas<3.0.0,>=2.2.2
|
16
16
|
Dynamic: license-file
|
17
17
|
|
@@ -1,8 +1,8 @@
|
|
1
|
-
skinoptics/__init__.py,sha256=
|
1
|
+
skinoptics/__init__.py,sha256=H3QcU6umNm-7cIrsx2qIi5O4ncwbNdzmrQLExkMmKoY,1525
|
2
2
|
skinoptics/absorption_coefficient.py,sha256=lg4B1j_QNwnuATomFyBOCEe5hfM6AIl5ROsDpaGpIzs,36264
|
3
3
|
skinoptics/anisotropy_factor.py,sha256=s-moy9nWkD87NEJMjrVXuIItqj0xIdbTykZoVQtQaRw,37612
|
4
4
|
skinoptics/colors.py,sha256=R1HbJBv4Lw8Vq7Bmwa8ccjqqfAsictcjycwg4HT1rAk,61331
|
5
|
-
skinoptics/dataframes.py,sha256=
|
5
|
+
skinoptics/dataframes.py,sha256=TOmwIKdea3mIGTqShzDp62tnkOVX3T9xdA0bbRstKQM,6889
|
6
6
|
skinoptics/refractive_index.py,sha256=H6CTjbGfdUEOyGPQSwQiH018exvdpq8-XuKJmpufUfU,14553
|
7
7
|
skinoptics/scattering_coefficient.py,sha256=WNwJOWgBkihIEcREvSVVZK-AiDhqw5_amhxjrMJcOb0,15217
|
8
8
|
skinoptics/utils.py,sha256=p1nnHICf_hrmZc45nYSlJPhqfQIoE-qN1MYq6ciE0R0,10452
|
@@ -39,8 +39,8 @@ skinoptics/datasets/optical_properties/oxy_and_deo_Bosschaart.txt,sha256=eF96Ao4
|
|
39
39
|
skinoptics/datasets/spectra/Lu2025/ISSA_17_Jan_2025_Yan_Lu.xlsx,sha256=c5aqdgjxpvkexwv4-EISUqnYH3GivKBm636YFVudEWE,9320520
|
40
40
|
skinoptics/datasets/spectra/Xiao2016/skindatabaseSpectra/readmeSpectra.docx,sha256=ren4htGe154BIlBridkvBvbc8AYY1RRmp4CVICYwDvc,15147
|
41
41
|
skinoptics/datasets/spectra/Xiao2016/skindatabaseSpectra/skin_spectra_data.xlsx,sha256=z7shS1rZzqpaRGi_Ji0nYcSzIxEmADQOtaJ_Uwcotcc,1434709
|
42
|
-
skinoptics-0.0.
|
43
|
-
skinoptics-0.0.
|
44
|
-
skinoptics-0.0.
|
45
|
-
skinoptics-0.0.
|
46
|
-
skinoptics-0.0.
|
42
|
+
skinoptics-0.0.7.dist-info/licenses/LICENSE.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
43
|
+
skinoptics-0.0.7.dist-info/METADATA,sha256=lBMgQtLl0ntoN965j9w8WNHqx_oVpYzKTJc90DCHuNc,1288
|
44
|
+
skinoptics-0.0.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
45
|
+
skinoptics-0.0.7.dist-info/top_level.txt,sha256=4NYJW3uliYlvbd-Zywg2MxJOGe4wYA7Oz_I5EZF4YEQ,11
|
46
|
+
skinoptics-0.0.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|