Spaces:
Running
on
Zero
Running
on
Zero
demo
Browse files- Adobe Research License v1.2.txt +25 -0
- app.py +4 -13
- examples/{teaser.png → 000.png} +0 -0
- examples/{019.png → 001.png} +0 -0
- examples/{025.png → 003.png} +0 -0
- examples/{013.png → 006.png} +0 -0
- examples/{016.png → 007.png} +0 -0
- gslrm/__init__.py +3 -12
- gslrm/model/__init__.py +3 -12
- gslrm/model/gaussians_renderer.py +3 -12
- gslrm/model/gslrm.py +3 -12
- gslrm/model/transform_data.py +3 -12
- gslrm/model/utils_transformer.py +3 -12
- mvdiffusion/__init__.py +3 -12
- mvdiffusion/models/__init__.py +3 -12
- mvdiffusion/pipelines/__init__.py +3 -12
- mvdiffusion/pipelines/pipeline_mvdiffusion_unclip.py +3 -12
- utils_folder/__init__.py +3 -12
- utils_folder/face_utils.py +3 -12
Adobe Research License v1.2.txt
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright � <YEAR>, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
+
|
| 3 |
+
ADOBE RESEARCH LICENSE
|
| 4 |
+
|
| 5 |
+
This license agreement (the �License�) between Adobe Inc., having a place of business at 345 Park Avenue, San Jose, California 95110-2704 (�Adobe�), and you, the individual or entity exercising rights under this License (�you� or �your�), sets forth the terms for your use of certain research materials that are owned by Adobe (the �Licensed Materials�). By exercising rights under this License, you accept and agree to be bound by its terms. If you are exercising rights under this License on behalf of an entity, then �you� means you and such entity, and you (personally) represent and warrant that you (personally) have all necessary authority to bind that entity to the terms of this License.
|
| 6 |
+
|
| 7 |
+
1. GRANT OF LICENSE.
|
| 8 |
+
1.1 Adobe grants you a nonexclusive, worldwide, royalty-free, revocable, fully paid license to (A) reproduce, use, modify, and publicly display the Licensed Materials for noncommercial research purposes only; and (B) redistribute the Licensed Materials, and modifications or derivative works thereof, for noncommercial research purposes only, provided that you give recipients a copy of this License upon redistribution.
|
| 9 |
+
1.2 You may add your own copyright statement to your modifications and/or provide additional or different license terms for use, reproduction, modification, public display, and redistribution of your modifications and derivative works, provided that such license terms limit the use, reproduction, modification, public display, and redistribution of such modifications and derivative works to noncommercial research purposes only.
|
| 10 |
+
1.3 For purposes of this License, noncommercial research purposes include academic research and teaching only. Noncommercial research purposes do not include commercial licensing or distribution, development of commercial products, or any other activity that results in commercial gain.
|
| 11 |
+
|
| 12 |
+
2. OWNERSHIP AND ATTRIBUTION. Adobe and its licensors own all right, title, and interest in the Licensed Materials. You must retain all copyright notices and/or disclaimers in the Licensed Materials.
|
| 13 |
+
|
| 14 |
+
3. DISCLAIMER OF WARRANTIES. THE LICENSED MATERIALS ARE PROVIDED �AS IS� WITHOUT WARRANTY OF ANY KIND. THE ENTIRE RISK AS TO THE USE, RESULTS, AND PERFORMANCE OF THE LICENSED MATERIALS IS ASSUMED BY YOU. ADOBE DISCLAIMS ALL WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, WITH REGARD TO YOUR USE OF THE LICENSED MATERIALS, INCLUDING, BUT NOT LIMITED TO, NONINFRINGEMENT OF THIRD-PARTY RIGHTS.
|
| 15 |
+
|
| 16 |
+
4. LIMITATION OF LIABILITY. IN NO EVENT WILL ADOBE BE LIABLE FOR ANY ACTUAL, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES, INCLUDING WITHOUT LIMITATION, LOSS OF PROFITS OR OTHER COMMERCIAL LOSS, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE LICENSED MATERIALS, EVEN IF ADOBE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
| 17 |
+
|
| 18 |
+
5. TRADE SANCTIONS AND EXPORT CONTROL COMPLIANCE. The Licensed Materials, and your use of them, may be subject to U.S. export controls and sanctions laws. By exercising rights under this License, you agree to comply with all such laws, restrictions, and regulations, and you warrant that you are not prohibited from receiving the Licensed Materials by the laws of any jurisdiction.
|
| 19 |
+
|
| 20 |
+
6. TERM AND TERMINATION.
|
| 21 |
+
6.1 The License is effective upon acceptance by you and will remain in effect unless terminated earlier in accordance with Section 6.2.
|
| 22 |
+
6.2 Any breach of any material provision of this License will automatically terminate the rights granted herein.
|
| 23 |
+
6.3 Sections 2 (Ownership and Attribution), 3 (Disclaimer of Warranties), 4 (Limitation of Liability) will survive termination of this License.
|
| 24 |
+
|
| 25 |
+
|
app.py
CHANGED
|
@@ -1,16 +1,7 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
| 15 |
|
| 16 |
"""
|
|
@@ -355,7 +346,7 @@ class FaceLiftPipeline:
|
|
| 355 |
)
|
| 356 |
|
| 357 |
# Generate random filename to support multiple concurrent users
|
| 358 |
-
random_id = random.randint(0,
|
| 359 |
ply_filename = f"gaussians_{random_id:03d}.ply"
|
| 360 |
ply_path = output_dir / ply_filename
|
| 361 |
filtered_gaussians.save_ply(str(ply_path))
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
|
| 7 |
"""
|
|
|
|
| 346 |
)
|
| 347 |
|
| 348 |
# Generate random filename to support multiple concurrent users
|
| 349 |
+
random_id = random.randint(0, 999)
|
| 350 |
ply_filename = f"gaussians_{random_id:03d}.ply"
|
| 351 |
ply_path = output_dir / ply_filename
|
| 352 |
filtered_gaussians.save_ply(str(ply_path))
|
examples/{teaser.png → 000.png}
RENAMED
|
File without changes
|
examples/{019.png → 001.png}
RENAMED
|
File without changes
|
examples/{025.png → 003.png}
RENAMED
|
File without changes
|
examples/{013.png → 006.png}
RENAMED
|
File without changes
|
examples/{016.png → 007.png}
RENAMED
|
File without changes
|
gslrm/__init__.py
CHANGED
|
@@ -1,14 +1,5 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
gslrm/model/__init__.py
CHANGED
|
@@ -1,14 +1,5 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
gslrm/model/gaussians_renderer.py
CHANGED
|
@@ -1,16 +1,7 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
| 15 |
import math
|
| 16 |
import os
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
import math
|
| 7 |
import os
|
gslrm/model/gslrm.py
CHANGED
|
@@ -1,16 +1,7 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
| 15 |
"""
|
| 16 |
GSLRM (Gaussian Splatting Large Reconstruction Model)
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
"""
|
| 7 |
GSLRM (Gaussian Splatting Large Reconstruction Model)
|
gslrm/model/transform_data.py
CHANGED
|
@@ -1,16 +1,7 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
| 15 |
"""
|
| 16 |
Data transformation utilities for GSLRM model.
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
"""
|
| 7 |
Data transformation utilities for GSLRM model.
|
gslrm/model/utils_transformer.py
CHANGED
|
@@ -1,16 +1,7 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
| 15 |
"""
|
| 16 |
Transformer utilities for GSLRM.
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
"""
|
| 7 |
Transformer utilities for GSLRM.
|
mvdiffusion/__init__.py
CHANGED
|
@@ -1,14 +1,5 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
mvdiffusion/models/__init__.py
CHANGED
|
@@ -1,14 +1,5 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
mvdiffusion/pipelines/__init__.py
CHANGED
|
@@ -1,14 +1,5 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
mvdiffusion/pipelines/pipeline_mvdiffusion_unclip.py
CHANGED
|
@@ -1,16 +1,7 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
#
|
| 15 |
# Modified from https://github.com/pengHTYX/Era3D/blob/main/mvdiffusion/pipelines/pipeline_mvdiffusion_unclip.py
|
| 16 |
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
#
|
| 6 |
# Modified from https://github.com/pengHTYX/Era3D/blob/main/mvdiffusion/pipelines/pipeline_mvdiffusion_unclip.py
|
| 7 |
|
utils_folder/__init__.py
CHANGED
|
@@ -1,14 +1,5 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
utils_folder/face_utils.py
CHANGED
|
@@ -1,16 +1,7 @@
|
|
| 1 |
-
# Copyright 2025 Adobe Inc.
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
# You may obtain a copy of the License at
|
| 6 |
-
#
|
| 7 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
-
#
|
| 9 |
-
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
-
# See the License for the specific language governing permissions and
|
| 13 |
-
# limitations under the License.
|
| 14 |
|
| 15 |
"""
|
| 16 |
Face detection and cropping utilities for 3D face reconstruction.
|
|
|
|
| 1 |
+
# Copyright © 2025, Adobe Inc. and its licensors. All rights reserved.
|
| 2 |
#
|
| 3 |
+
# This file is licensed under the Adobe Research License. You may obtain a copy
|
| 4 |
+
# of the license at https://raw.githubusercontent.com/adobe-research/FaceLift/main/LICENSE.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
"""
|
| 7 |
Face detection and cropping utilities for 3D face reconstruction.
|