react-native-guided-camera
Version:
A React Native component for agricultural camera guidance with sensor-based motion detection, orientation tracking, and real-time feedback.
16 lines • 861 B
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";
// Default export
export default GuidedCameraView;
//# sourceMappingURL=index.js.map