Privacy Policy

Last updated: February 2025

1. Information We Collect

When you use our race detection service, we collect:

  • Images you upload for analysis (temporarily in browser only)
  • Analysis results (displayed only, not stored)
  • Basic browser information for compatibility

2. How We Process Your Images

We prioritize your privacy and data security:

  • All image processing occurs directly in your browser
  • Images are never stored on our servers
  • Analysis is performed client-side using browser-based processing

Technical Implementation Proof

// Client-side processing in browser
socket.on('analyze', async data => {
    // Convert image to base64 in browser memory
    const buffer = Buffer.from(data.split(',')[1], 'base64');
    
    // Process locally without server storage
    const result = await processImage(buffer);
    
    // Clear data immediately
    buffer = null;
    
    // Show results without saving
    displayResults(result);
});

This code demonstrates that:

  • Images are processed as temporary data in your browser
  • Data is immediately cleared after analysis
  • No permanent storage or server uploads occur

3. Data Security

Our security measures include:

  • Zero data retention - we don't store your images
  • Browser-based processing - no server uploads
  • Immediate data clearing after analysis
  • No third-party data sharing

4. Your Rights

You have the right to:

  • Know that your images are not stored
  • Use the service without data collection
  • Clear your browser data at any time

5. Transparency

Our commitment to transparency:

  • Open source code available for review
  • Clear documentation of data handling
  • No hidden data collection

6. Contact Us

If you have any questions about our privacy practices, please contact us at:

root@sazumi.moe