
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
actfw's components for Jetson series. actfw is a framework for Actcast Application written in Python.
sudo apt-get update
sudo apt-get install -y python3-pip python3-pil
# Install GStreamer dependencies (some components in actfw-jetson uses GStreamer in implementation)
sudo apt-get install -y libgstreamer1.0-dev libgirepository1.0-dev ibgstreamer-plugins-base1.0-dev libglib2.0-dev libcairo2-dev
pip3 install actfw-jetson
See actfw-core for basic usage.
Since actfw-jetson uses GStreamer to implement some components, an application using actfw-jetson may have to initialize GStreamer library before using actfw-jetson's components.
if __name__ == '__main__':
import gi
gi.require_version('Gst', '1.0')
from gi.repository import Gst
Gst.init(None)
main()
actfw-jetson provides:
actfw_jetson.Display
: Display using nvoverlaysink
element in NVIDIA's Accelerated GStreamer.example/hello_jetson
: The simplest application example for Jetson
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
poetry install
poetry run nose2 -v
Displays a red rectangle and greeting text on it on HDMI display.
Run on a Jetson Nano connected to HDMI display:
apt-get install fonts-dejavu-core
poetry run python example/hello_jetson
Displays camera input on HDMI display.
Run on a Jetson Nano with CSI camera and HDMI display:
poetry run python example/camera_display
CI will automatically do. Follow the following branch/tag rules.
master
branch (via pull-requests).version
field in pyproject.toml
with new version in master
branch.master
branch's HEAD.
release-<New version>
(e.g. release-1.4.0
) from Choose a tag
pull down menu.FAQs
actfw's additional components for Jetson series
We found that actfw-jetson demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.