react-native-guided-camera
Version:
A React Native component for agricultural camera guidance with sensor-based motion detection, orientation tracking, and real-time feedback.
24 lines • 1.39 kB
JavaScript
// Main component
import GuidedCameraView from "./components/GuidedCameraView";
export { GuidedCameraView };
// Utility classes
export { PitchDetector } from "./utils/pitchDetector";
export { YawDetector } from "./utils/yawDetector";
export { MotionDetector } from "./utils/motionDetectorV2";
export { FallbackSpeedDetector as SpeedDetector } from "./utils/fallbackSpeedDetector";
export { RealtimeBrightnessDetector } from "./utils/realtimeBrightnessDetectorV2";
// Utility functions
export { calculateAngleColor, getAngleMessage } from "./utils/pitchDetector";
export { getYawColor, getYawMessage, shouldAllowRecordingYaw, } from "./utils/yawDetector";
export { getSpeedColor, getSpeedMessage, shouldAllowRecordingSpeed, getSpeedIcon, } from "./utils/fallbackSpeedDetector";
// Translation utilities
export { getTranslations, translations } from "./utils/translations";
// Translation-aware message functions
export { getAngleMessageTranslated } from "./utils/pitchDetector";
export { getYawMessageTranslated } from "./utils/yawDetector";
export { getMotionStabilityMessage } from "./utils/motionDetectorV2";
export { getSpeedRecommendationMessage, getSpeedMotionMessage, } from "./utils/fallbackSpeedDetector";
export { getBrightnessRecommendationMessage } from "./utils/realtimeBrightnessDetectorV2";
// Default export
export default GuidedCameraView;
//# sourceMappingURL=index.js.map