معرفی شرکت ها


DracoPy-1.3.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python wrapper for Google's Draco Mesh Compression Library
ویژگی مقدار
سیستم عامل -
نام فایل DracoPy-1.3.0
نام DracoPy
نسخه کتابخانه 1.3.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Manuel Castro, William Silversmith :: Contributors :: Fatih Erol, Faru Nuri Sonmez, Zeyu Zhao, Denis Riviere
ایمیل نویسنده macastro@princeton.edu, ws9@princeton.edu
آدرس صفحه اصلی https://github.com/seung-lab/DracoPy
آدرس اینترنتی https://pypi.org/project/DracoPy/
مجوز License :: OSI Approved :: Apache Software License
[![PyPI version](https://badge.fury.io/py/DracoPy.svg)](https://badge.fury.io/py/DracoPy) [![Build Status](https://travis-ci.org/seung-lab/DracoPy.svg?branch=master)](https://travis-ci.org/seung-lab/DracoPy) # DracoPy ```python import os import DracoPy with open('bunny.drc', 'rb') as draco_file: mesh = DracoPy.decode(draco_file.read()) print(f"number of points: {len(mesh.points)}") print(f"number of faces: {len(mesh.faces)}") print(f"number of normals: {len(mesh.normals)}") # Note: If mesh.points is an integer numpy array, # it will be encoded as an integer attribute. Otherwise, # it will be encoded as floating point. binary = DracoPy.encode(mesh.points, mesh.faces) with open('bunny_test.drc', 'wb') as test_file: test_file.write(encoding_test) # If faces is omitted, DracoPy will encode a point cloud binary = Dracopy.encode(mesh.points) # Options for encoding: binary = Dracopy.encode( mesh.points, faces=mesh.faces, quantization_bits=14, compression_level=1, quantization_range=-1, quantization_origin=None, create_metadata=False, preserve_order=False, colors=mesh.colors ) ``` DracoPy is a Python wrapper for Google's Draco mesh compression library. ## Installation Binary wheels are available for users with Python >= 3.6 and pip >= 20. Installation from source requires Python >= 3.6, pip >= 10, and a C++ compiler that is fully compatible with C++11. It supports Linux, OS X, and Windows. Numpy is required. ```bash pip install DracoPy ``` ## Acknowledgements We graciously thank The Stanford 3D Scanning Repository for providing the Stanford Bunny test model. https://graphics.stanford.edu/data/3Dscanrep/


نیازمندی

مقدار نام
- numpy


نحوه نصب


نصب پکیج whl DracoPy-1.3.0:

    pip install DracoPy-1.3.0.whl


نصب پکیج tar.gz DracoPy-1.3.0:

    pip install DracoPy-1.3.0.tar.gz