Skip to main content

GPU-accelerated drawing primitives for pixtreme

Project description

pixtreme-draw

GPU-accelerated drawing primitives for pixtreme

Overview

pixtreme-draw provides high-performance drawing operations for rendering shapes, text, and masks directly on GPU memory.

Features

  • Shape Drawing: Circles, rectangles with anti-aliasing
  • Text Rendering: GPU-accelerated text with custom fonts
  • Mask Generation: Rounded masks for compositing
  • Zero-Copy: Direct GPU memory operations via CuPy

Installation

pip install pixtreme-draw

Requires pixtreme-core, pixtreme-filter, and CUDA Toolkit 12.x.

Quick Start

import pixtreme_draw as pd
import pixtreme_core as px

# Read image
img = px.imread("input.jpg")

# Draw filled circle
img = pd.circle(img, center_x=256, center_y=256, radius=100, color=(0.0, 1.0, 0.0))

# Draw filled rectangle
img = pd.rectangle(img, top_left_x=100, top_left_y=100, bottom_right_x=300, bottom_right_y=300, color=(1.0, 0.0, 0.0))

# Add text label with background
img = pd.add_label(img, text="Hello World", org=(50, 50), color=(1.0, 1.0, 1.0))

# Save result
px.imwrite("output.jpg", img)

API

Shape Drawing

# Circle (filled)
pd.circle(image, center_x, center_y, radius, color=(1.0, 1.0, 1.0))

# Rectangle (filled)
pd.rectangle(image, top_left_x, top_left_y, bottom_right_x, bottom_right_y, color=(1.0, 1.0, 1.0))

Text Rendering

# Simple text
pd.put_text(image, text, org, font_face=cv2.FONT_HERSHEY_SIMPLEX, font_scale=1.0, color=(1.0, 1.0, 1.0), thickness=2)

# Text with background label
pd.add_label(image, text, org=(0, 0), font_scale=1.0, color=(1.0, 1.0, 1.0), label_color=(0.0, 0.0, 0.0))

Mask Generation

# Rounded mask for compositing
mask = pd.create_rounded_mask(dsize=(512, 512), radius_ratio=0.1, blur_size=0, sigma=1.0)

License

MIT License - see LICENSE file for details.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pixtreme_draw-0.6.3.tar.gz (13.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pixtreme_draw-0.6.3-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file pixtreme_draw-0.6.3.tar.gz.

File metadata

  • Download URL: pixtreme_draw-0.6.3.tar.gz
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.18

File hashes

Hashes for pixtreme_draw-0.6.3.tar.gz
Algorithm Hash digest
SHA256 5ff5f22e806fc935f045ceb629b7a649864c6f8032ad53cb3a91df06c80b7d31
MD5 cedb41f840766d6267ab8b0161c61447
BLAKE2b-256 f04035fae06c05363060121f4ace6541452c094c57be33c1b71a005de86c278a

See more details on using hashes here.

File details

Details for the file pixtreme_draw-0.6.3-py3-none-any.whl.

File metadata

File hashes

Hashes for pixtreme_draw-0.6.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e5d5fd56b6081857ca338e71c7a4cdc71c54fcba6f27084f5c48da56ce9d8298
MD5 585c1c617167ea2795782c20357cb0ca
BLAKE2b-256 bf41fb9ad5adec79bf73fae63a35180e46a91f2355552806d0524ed37d6b2472

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page