Синтез 3D изображения цветного автомобиля с использованием dash библиотеки python.
Для проекта были использован данный репозиторий: plotly/dash-brain-surface-viewer
Следующие инструкции относятся к Posix/bash. Пользователи Windows должны проверить здесь
Сначала клонируйте этот репозиторий и откройте терминал в корневой папке. Создание и активация новой виртуальной среды (рекомендуется) путем запуска следующее:
python3 -m venv myvenv
source myvenv/bin/activate
Установите требования:
pip install -r requirements.txt
Запустите приложение:
python app.py
Откройте браузер по адресу http://127.0.0.1:8050
- ACE Lab в McGill для данных мозга и вдохновения от их превосходного мозга Surface Viewer
- Джулия Хунтенбург за выяснение того, как читать объекты MNI в Python
- Е. Петрисор за её обширные исследования в Питоне с сетками Плотлы.js
Synthesis of 3D images of a color car using the dash library python.
This repository was used for the project: plotly/dash-brain-surface-viewer
The following instructions apply to Posix/bash. Windows users should check here
First, clone this repository and open a terminal inside the root folder.
Create and activate a new virtual environment (recommended) by running the following:
python3 -m venv myvenv
source myvenv/bin/activate
Install the requirements:
pip install -r requirements.txt
Run the app:
python app.py
Open a browser at http://127.0.0.1:8050
- ACE Lab at McGill for the brain data and inspiration from their excellent brain Surface Viewer
- Julia Huntenburg for figuring out how to read MNI objects in Python
- E. Petrisor for her extensive exploration in Python with Plotly.js meshes