- Implemented main test script to verify system components and functionality. - Added individual test scripts for camera exposure settings, API changes, camera recovery, maximum FPS, MQTT events, logging, and timezone functionality. - Created service file for system management and automatic startup. - Included detailed logging and error handling in test scripts for better diagnostics. - Ensured compatibility with existing camera SDK and API endpoints.
13 lines
349 B
Python
13 lines
349 B
Python
"""
|
|
Camera module for the USDA Vision Camera System.
|
|
|
|
This module handles GigE camera discovery, management, monitoring, and recording
|
|
using the camera SDK library (mvsdk).
|
|
"""
|
|
|
|
from .manager import CameraManager
|
|
from .recorder import CameraRecorder
|
|
from .monitor import CameraMonitor
|
|
|
|
__all__ = ["CameraManager", "CameraRecorder", "CameraMonitor"]
|